aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2006-12-17 02:02:10 +0000
committerChristian Grothoff <christian@grothoff.org>2006-12-17 02:02:10 +0000
commit7c88ebd957beb23fdd1657d933a74a8b38c0d9e6 (patch)
treed090dae065a2610a5ea89a69aca179d2273d3983
parentf80fffbb5bd11b300cc3f985c568016721ec1112 (diff)
downloadgnunet-gtk-7c88ebd957beb23fdd1657d933a74a8b38c0d9e6.tar.gz
gnunet-gtk-7c88ebd957beb23fdd1657d933a74a8b38c0d9e6.zip
call co init
-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 */