aboutsummaryrefslogtreecommitdiff
path: root/src/identity/gnunet-service-identity.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-17 10:01:33 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-17 10:01:33 +0000
commit8d689d0293e48b14377db1dc4e237980183a0b28 (patch)
tree43bdb6ee859df699d7cb397ecc66df12fcb8bcf5 /src/identity/gnunet-service-identity.c
parent6a98426836161b08b3e7650721497527ca3d3967 (diff)
downloadgnunet-8d689d0293e48b14377db1dc4e237980183a0b28.tar.gz
gnunet-8d689d0293e48b14377db1dc4e237980183a0b28.zip
-fix typos
Diffstat (limited to 'src/identity/gnunet-service-identity.c')
-rw-r--r--src/identity/gnunet-service-identity.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/identity/gnunet-service-identity.c b/src/identity/gnunet-service-identity.c
index 84da12c2a..ec874fa6f 100644
--- a/src/identity/gnunet-service-identity.c
+++ b/src/identity/gnunet-service-identity.c
@@ -916,6 +916,13 @@ run (void *cls,
916 stats = GNUNET_STATISTICS_create ("identity", cfg); 916 stats = GNUNET_STATISTICS_create ("identity", cfg);
917 GNUNET_SERVER_add_handlers (server, handlers); 917 GNUNET_SERVER_add_handlers (server, handlers);
918 nc = GNUNET_SERVER_notification_context_create (server, 1); 918 nc = GNUNET_SERVER_notification_context_create (server, 1);
919 if (GNUNET_OK !=
920 GNUNET_DISK_directory_create (ego_directory))
921 {
922 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
923 _("Failed to create directory `%s' for storing egos\n"),
924 ego_directory);
925 }
919 GNUNET_DISK_directory_scan (ego_directory, 926 GNUNET_DISK_directory_scan (ego_directory,
920 &process_ego_file, 927 &process_ego_file,
921 NULL); 928 NULL);