aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_getopt.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-08 14:47:06 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-08 14:47:06 +0000
commit22b79da9f678824250e98753788a959eadfcd1de (patch)
treeef6209e127af2850127c97cae6990fe20f3e2266 /src/fs/fs_getopt.c
parent616b1d78400800215b119c9ea8516777dbcee41d (diff)
downloadgnunet-22b79da9f678824250e98753788a959eadfcd1de.tar.gz
gnunet-22b79da9f678824250e98753788a959eadfcd1de.zip
seaspider fixes
Diffstat (limited to 'src/fs/fs_getopt.c')
-rw-r--r--src/fs/fs_getopt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fs/fs_getopt.c b/src/fs/fs_getopt.c
index edabcd06c..0db7237f7 100644
--- a/src/fs/fs_getopt.c
+++ b/src/fs/fs_getopt.c
@@ -144,13 +144,13 @@ GNUNET_FS_getopt_set_metadata (struct GNUNET_GETOPT_CommandLineProcessorContext*
144 *mm = meta; 144 *mm = meta;
145 } 145 }
146 146
147 tmp = GNUNET_STRINGS_to_utf8 (value, strlen (value),
148#if ENABLE_NLS 147#if ENABLE_NLS
149 nl_langinfo (CODESET) 148 tmp = GNUNET_STRINGS_to_utf8 (value, strlen (value),
149 nl_langinfo (CODESET));
150#else 150#else
151 "utf-8" 151 tmp = GNUNET_STRINGS_to_utf8 (value, strlen (value),
152 "utf-8");
152#endif 153#endif
153 );
154 type = EXTRACTOR_metatype_get_max (); 154 type = EXTRACTOR_metatype_get_max ();
155 while (type > 0) 155 while (type > 0)
156 { 156 {