aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-publish.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-06-13 16:00:14 +0000
committerChristian Grothoff <christian@grothoff.org>2012-06-13 16:00:14 +0000
commitb658d1469d6bdaf5930867151130903d221fae37 (patch)
tree61a565132e9c9ce62df8e0deba3c00afdfb0b4cd /src/fs/gnunet-publish.c
parent4f70714413bba8c17e8bc43c0c83e4aaaef46478 (diff)
downloadgnunet-b658d1469d6bdaf5930867151130903d221fae37.tar.gz
gnunet-b658d1469d6bdaf5930867151130903d221fae37.zip
-document error possibilities better (#2416)
Diffstat (limited to 'src/fs/gnunet-publish.c')
-rw-r--r--src/fs/gnunet-publish.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs/gnunet-publish.c b/src/fs/gnunet-publish.c
index 24e49d369..4b13a16bd 100644
--- a/src/fs/gnunet-publish.c
+++ b/src/fs/gnunet-publish.c
@@ -355,7 +355,7 @@ uri_ksk_continuation (void *cls, const struct GNUNET_FS_Uri *ksk_uri,
355 ns = GNUNET_FS_namespace_create (ctx, pseudonym); 355 ns = GNUNET_FS_namespace_create (ctx, pseudonym);
356 if (ns == NULL) 356 if (ns == NULL)
357 { 357 {
358 FPRINTF (stderr, _("Failed to create namespace `%s'\n"), pseudonym); 358 FPRINTF (stderr, _("Failed to create namespace `%s' (illegal filename?)\n"), pseudonym);
359 ret = 1; 359 ret = 1;
360 } 360 }
361 else 361 else
@@ -609,7 +609,7 @@ run (void *cls, char *const *args, const char *cfgfile,
609 namespace = GNUNET_FS_namespace_create (ctx, pseudonym); 609 namespace = GNUNET_FS_namespace_create (ctx, pseudonym);
610 if (NULL == namespace) 610 if (NULL == namespace)
611 { 611 {
612 FPRINTF (stderr, _("Could not create namespace `%s'\n"), pseudonym); 612 FPRINTF (stderr, _("Failed to create namespace `%s' (illegal filename?)\n"), pseudonym);
613 GNUNET_FS_stop (ctx); 613 GNUNET_FS_stop (ctx);
614 ret = 1; 614 ret = 1;
615 return; 615 return;