X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Ffs%2Ffs_publish_ksk.c;h=05231adf2fcc77078f0880e70b2afe02ed92ac27;hb=dd1927b960c7cea13733e061a11142274652ba27;hp=0ee23959e54bacf29de5263075caeee908b3b1ab;hpb=c2d9d1e64c9801122caaa6b429fc67706db5c9d7;p=oweals%2Fgnunet.git diff --git a/src/fs/fs_publish_ksk.c b/src/fs/fs_publish_ksk.c index 0ee23959e..05231adf2 100644 --- a/src/fs/fs_publish_ksk.c +++ b/src/fs/fs_publish_ksk.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** @@ -105,11 +105,11 @@ struct GNUNET_FS_PublishKskContext /** - * Continuation of "GNUNET_FS_publish_ksk" that performs + * Continuation of #GNUNET_FS_publish_ksk() that performs * the actual publishing operation (iterating over all * of the keywords). * - * @param cls closure of type "struct PublishKskContext*" + * @param cls closure of type `struct PublishKskContext *` * @param tc unused */ static void @@ -121,7 +121,7 @@ publish_ksk_cont (void *cls, * Function called by the datastore API with * the result from the PUT request. * - * @param cls closure of type "struct GNUNET_FS_PublishKskContext*" + * @param cls closure of type `struct GNUNET_FS_PublishKskContext *` * @param msg error message (or NULL) */ static void @@ -144,14 +144,15 @@ kb_put_cont (void *cls, /** - * Continuation of "GNUNET_FS_publish_ksk" that performs the actual + * Continuation of #GNUNET_FS_publish_ksk() that performs the actual * publishing operation (iterating over all of the keywords). * - * @param cls closure of type "struct GNUNET_FS_PublishKskContext*" + * @param cls closure of type `struct GNUNET_FS_PublishKskContext *` * @param tc unused */ static void -publish_ksk_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) +publish_ksk_cont (void *cls, + const struct GNUNET_SCHEDULER_TaskContext *tc) { struct GNUNET_FS_PublishKskContext *pkc = cls; const char *keyword; @@ -160,8 +161,10 @@ publish_ksk_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) if ( (pkc->i == pkc->ksk_uri->data.ksk.keywordCount) || (NULL == pkc->dsh) ) { - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "KSK PUT operation complete\n"); - pkc->cont (pkc->cont_cls, pkc->ksk_uri, NULL); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "KSK PUT operation complete\n"); + pkc->cont (pkc->cont_cls, pkc->ksk_uri, + NULL); GNUNET_FS_publish_ksk_cancel (pkc); return; } @@ -216,7 +219,9 @@ GNUNET_FS_publish_ksk (struct GNUNET_FS_Handle *h, pkc->dsh = GNUNET_DATASTORE_connect (h->cfg); if (NULL == pkc->dsh) { - cont (cont_cls, NULL, _("Could not connect to datastore.")); + cont (cont_cls, + NULL, + _("Could not connect to datastore.")); GNUNET_free (pkc); return NULL; }