diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2010-10-23 20:36:43 +0200 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2010-10-23 20:36:43 +0200 |
commit | f201398dbed3f3ad914d7071d23a64ae0b81027f (patch) | |
tree | 0a3a9f784d5655bf21eea613cd5064c6c61d86e9 /src/dirn.c | |
parent | 6ce209bd9d5a74ac15d48505c32bf138128105c9 (diff) |
Modified interface when prompting for a destination to store data
Diffstat (limited to 'src/dirn.c')
-rw-r--r-- | src/dirn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -279,10 +279,10 @@ static long int dir_aff_ncurses(disk_t *disk, const partition_t *partition, dir_ if(dir_data->local_dir==NULL) { if(LINUX_S_ISDIR(pos->stat.st_mode)!=0) - dir_data->local_dir=ask_location("Are you sure you want to copy %s and any files below to the directory %s ? [Y/N]", + dir_data->local_dir=ask_location("Please select a destination where %s and any files below will be copied.", dir_data->current_directory, NULL); else - dir_data->local_dir=ask_location("Are you sure you want to copy %s to the directory %s ? [Y/N]", + dir_data->local_dir=ask_location("Please select a destination where %s will be copied.", dir_data->current_directory, NULL); } if(dir_data->local_dir!=NULL) |