aboutsummaryrefslogtreecommitdiff
path: root/src/util/server.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-09-27 19:36:14 +0000
committerChristian Grothoff <christian@grothoff.org>2012-09-27 19:36:14 +0000
commit9cefd9c5522797b132749ca7d99a930007d28347 (patch)
tree63aa5de219bbd5f0d23f5f0affd418eee5bdd494 /src/util/server.c
parenta6a4bf9797ecf078179a102f52d1e30a4987bf03 (diff)
downloadgnunet-9cefd9c5522797b132749ca7d99a930007d28347.tar.gz
gnunet-9cefd9c5522797b132749ca7d99a930007d28347.zip
-converting more places to use STRINGS_relative_time_to_string
Diffstat (limited to 'src/util/server.c')
-rw-r--r--src/util/server.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/server.c b/src/util/server.c
index 663661fea..7ecb98c64 100644
--- a/src/util/server.c
+++ b/src/util/server.c
@@ -832,11 +832,9 @@ warn_no_receive_done (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
832 &warn_no_receive_done, client); 832 &warn_no_receive_done, client);
833 if (0 == (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason)) 833 if (0 == (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
834 LOG (GNUNET_ERROR_TYPE_WARNING, 834 LOG (GNUNET_ERROR_TYPE_WARNING,
835 _ 835 _("Processing code for message of type %u did not call `GNUNET_SERVER_receive_done' after %s\n"),
836 ("Processing code for message of type %u did not call GNUNET_SERVER_receive_done after %llums\n"),
837 (unsigned int) client->warn_type, 836 (unsigned int) client->warn_type,
838 (unsigned long long) 837 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (client->warn_start), GNUNET_YES));
839 GNUNET_TIME_absolute_get_duration (client->warn_start).rel_value);
840} 838}
841 839
842 840