From: Christian Grothoff Date: Sun, 18 Dec 2011 16:39:02 +0000 (+0000) Subject: -handle error codes from unindex X-Git-Tag: initial-import-from-subversion-38251~15595 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=206876a5f1f3cae19dbfe46f5ce1241fe4212597;p=oweals%2Fgnunet.git -handle error codes from unindex --- diff --git a/src/fs/gnunet-publish.c b/src/fs/gnunet-publish.c index 8c38c8ebd..59a86e9b7 100644 --- a/src/fs/gnunet-publish.c +++ b/src/fs/gnunet-publish.c @@ -154,6 +154,10 @@ progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info) case GNUNET_FS_STATUS_PUBLISH_STOPPED: GNUNET_break (NULL == pc); return NULL; + case GNUNET_FS_STATUS_UNINDEX_PROGRESS: + return NULL; + case GNUNET_FS_STATUS_UNINDEX_COMPLETED: + fprintf (stderr, _("Cleanup after abort complete.\n")); default: fprintf (stderr, _("Unexpected status: %d\n"), info->status); return NULL;