gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r35489 - gnunet/src/identity


From: gnunet
Subject: [GNUnet-SVN] r35489 - gnunet/src/identity
Date: Tue, 31 Mar 2015 18:17:09 +0200

Author: schanzen
Date: 2015-03-31 18:17:09 +0200 (Tue, 31 Mar 2015)
New Revision: 35489

Modified:
   gnunet/src/identity/plugin_rest_identity.c
Log:
- fix


Modified: gnunet/src/identity/plugin_rest_identity.c
===================================================================
--- gnunet/src/identity/plugin_rest_identity.c  2015-03-31 08:38:33 UTC (rev 
35488)
+++ gnunet/src/identity/plugin_rest_identity.c  2015-03-31 16:17:09 UTC (rev 
35489)
@@ -440,20 +440,17 @@
   term_data[handle->data_size] = '\0';
   memcpy (term_data, handle->data, handle->data_size);
   json_obj = GNUNET_REST_jsonapi_object_parse (term_data);
-GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "2\n");
   if (NULL == json_obj)
   {
     GNUNET_SCHEDULER_add_now (&do_error, handle);
     return;
   }
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "2.1\n");
   if (1 != GNUNET_REST_jsonapi_object_resource_count (json_obj))
   {
     GNUNET_REST_jsonapi_object_delete (json_obj);
     GNUNET_SCHEDULER_add_now (&do_error, handle);
     return;
   }
-GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "3\n");
   json_res = GNUNET_REST_jsonapi_object_get_resource (json_obj, 0);
   if (GNUNET_NO == GNUNET_REST_jsonapi_resource_check_type (json_res, 
GNUNET_REST_JSONAPI_IDENTITY_EGO))
   {
@@ -463,7 +460,6 @@
     cleanup_handle (handle);
     return;
   }
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "4\n");
   egoname_json = GNUNET_REST_jsonapi_resource_read_attr (json_res, 
GNUNET_REST_JSONAPI_KEY_ID);
   if (!json_is_string (egoname_json))
   {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]