diff options
Diffstat (limited to 'src/plugins/fs/download.c')
-rw-r--r-- | src/plugins/fs/download.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/fs/download.c b/src/plugins/fs/download.c index 06fbbadf..461b10b7 100644 --- a/src/plugins/fs/download.c +++ b/src/plugins/fs/download.c | |||
@@ -46,10 +46,13 @@ static GtkTreeStore * summary; | |||
46 | static int addFilesToDirectory | 46 | static int addFilesToDirectory |
47 | (const ECRS_FileInfo * fi, | 47 | (const ECRS_FileInfo * fi, |
48 | const HashCode512 * key, | 48 | const HashCode512 * key, |
49 | int isRoot, | ||
49 | void * closure) { | 50 | void * closure) { |
50 | struct ECRS_URI * uri = closure; | 51 | struct ECRS_URI * uri = closure; |
51 | DownloadList * pos; | 52 | DownloadList * pos; |
52 | 53 | ||
54 | if (isRoot == YES) | ||
55 | return OK; | ||
53 | FSUI_trackURI(fi); | 56 | FSUI_trackURI(fi); |
54 | pos = head; | 57 | pos = head; |
55 | while (pos != NULL) { | 58 | while (pos != NULL) { |
@@ -174,7 +177,7 @@ static void initiateDownload(GtkTreeModel * model, | |||
174 | if (name == NULL) | 177 | if (name == NULL) |
175 | name = filename; | 178 | name = filename; |
176 | 179 | ||
177 | addLogEntry(_("Downloading...")); | 180 | addLogEntry(_("Downloading `%s'"), name); |
178 | 181 | ||
179 | list = MALLOC(sizeof(DownloadList)); | 182 | list = MALLOC(sizeof(DownloadList)); |
180 | list->next = head; | 183 | list->next = head; |