diff options
author | Christian Grothoff <christian@grothoff.org> | 2006-12-27 03:52:48 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2006-12-27 03:52:48 +0000 |
commit | af66899cfa6b43bd4c0bd6062ce7c765c57a5855 (patch) | |
tree | e3871896fd3963b8632d8de83c3fdfd582c895fd | |
parent | ae1075b4abb5653ab7574cda2e29dfafcf2b8a85 (diff) | |
download | gnunet-gtk-af66899cfa6b43bd4c0bd6062ce7c765c57a5855.tar.gz gnunet-gtk-af66899cfa6b43bd4c0bd6062ce7c765c57a5855.zip |
not required option
-rw-r--r-- | src/plugins/fs/upload.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/plugins/fs/upload.c b/src/plugins/fs/upload.c index 6d6ee123..2e80c165 100644 --- a/src/plugins/fs/upload.c +++ b/src/plugins/fs/upload.c | |||
@@ -361,14 +361,12 @@ void on_fsinsertuploadbutton_clicked_fs(gpointer dummy, | |||
361 | GC_get_configuration_value_string(cfg, | 361 | GC_get_configuration_value_string(cfg, |
362 | "FS", | 362 | "FS", |
363 | "EXTRACTORS", | 363 | "EXTRACTORS", |
364 | NULL, | 364 | "", |
365 | &config); | 365 | &config); |
366 | if (config != NULL) { | 366 | if (strlen(config) > 0) |
367 | extractors = EXTRACTOR_loadConfigLibraries(extractors, | 367 | extractors = EXTRACTOR_loadConfigLibraries(extractors, |
368 | config); | 368 | config); |
369 | FREE(config); | 369 | FREE(config); |
370 | } | ||
371 | |||
372 | fsuc.filename = getEntryLineValue(getMainXML(), | 370 | fsuc.filename = getEntryLineValue(getMainXML(), |
373 | "uploadFilenameComboBoxEntry"); | 371 | "uploadFilenameComboBoxEntry"); |
374 | metaXML | 372 | metaXML |