aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_getopt.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-02-15 13:58:52 +0000
committerChristian Grothoff <christian@grothoff.org>2013-02-15 13:58:52 +0000
commitbdeb59bc30331d6fd9f05d56d44a30f281b46195 (patch)
tree4ed1830fec733e90ac15323b4e4851f704a35c64 /src/fs/fs_getopt.c
parent140fdac7581295bd7d9dd90ead81bf31f8473cbf (diff)
downloadgnunet-bdeb59bc30331d6fd9f05d56d44a30f281b46195.tar.gz
gnunet-bdeb59bc30331d6fd9f05d56d44a30f281b46195.zip
-fixes to make stream tests pass with ecc in core
Diffstat (limited to 'src/fs/fs_getopt.c')
-rw-r--r--src/fs/fs_getopt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs/fs_getopt.c b/src/fs/fs_getopt.c
index 6cc402115..d7ff97c6b 100644
--- a/src/fs/fs_getopt.c
+++ b/src/fs/fs_getopt.c
@@ -55,13 +55,13 @@ GNUNET_FS_getopt_set_keywords (struct GNUNET_GETOPT_CommandLineProcessorContext
55 { 55 {
56 u = GNUNET_malloc (sizeof (struct GNUNET_FS_Uri)); 56 u = GNUNET_malloc (sizeof (struct GNUNET_FS_Uri));
57 *uri = u; 57 *uri = u;
58 u->type = ksk; 58 u->type = GNUNET_FS_URI_KSK;
59 u->data.ksk.keywordCount = 0; 59 u->data.ksk.keywordCount = 0;
60 u->data.ksk.keywords = NULL; 60 u->data.ksk.keywords = NULL;
61 } 61 }
62 else 62 else
63 { 63 {
64 GNUNET_assert (u->type == ksk); 64 GNUNET_assert (u->type == GNUNET_FS_URI_KSK);
65 } 65 }
66 slen = strlen (value); 66 slen = strlen (value);
67 if (slen == 0) 67 if (slen == 0)