aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/fs.c')
-rw-r--r--src/plugins/fs/fs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/fs/fs.c b/src/plugins/fs/fs.c
index 082af05d..58ddc34a 100644
--- a/src/plugins/fs/fs.c
+++ b/src/plugins/fs/fs.c
@@ -25,6 +25,7 @@
25 */ 25 */
26 26
27#include "platform.h" 27#include "platform.h"
28#include <GNUnet/gnunet_collection_lib.h>
28#include "fs.h" 29#include "fs.h"
29#include "download.h" 30#include "download.h"
30#include "search.h" 31#include "search.h"
@@ -509,6 +510,7 @@ void init_fs(struct GE_Context * e,
509 510
510 ectx = e; 511 ectx = e;
511 cfg = c; 512 cfg = c;
513 CO_init(ectx, cfg);
512 tab 514 tab
513 = glade_xml_get_widget(getMainXML(), 515 = glade_xml_get_widget(getMainXML(),
514 "fsnotebook"); 516 "fsnotebook");
@@ -540,6 +542,7 @@ void done_fs() {
540 FSUI_stop(ctx); 542 FSUI_stop(ctx);
541 fs_summary_stop(); 543 fs_summary_stop();
542 fs_namespace_stop(); 544 fs_namespace_stop();
545 CO_done();
543} 546}
544 547
545/* end of fs.c */ 548/* end of fs.c */