aboutsummaryrefslogtreecommitdiff
path: root/src/dv
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-06-09 22:04:27 +0000
committerChristian Grothoff <christian@grothoff.org>2014-06-09 22:04:27 +0000
commit4d43cd194b62ce558511b456098c5cf8d6df878f (patch)
tree1b255438930cc9d4dd5846479da0ce59c9086123 /src/dv
parent1dd22b0d681848af9980e5202e38b1a307cf2094 (diff)
downloadgnunet-4d43cd194b62ce558511b456098c5cf8d6df878f.tar.gz
gnunet-4d43cd194b62ce558511b456098c5cf8d6df878f.zip
-code beautification
Diffstat (limited to 'src/dv')
-rw-r--r--src/dv/plugin_transport_dv.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/dv/plugin_transport_dv.c b/src/dv/plugin_transport_dv.c
index 9e8ef79d2..9a70ada40 100644
--- a/src/dv/plugin_transport_dv.c
+++ b/src/dv/plugin_transport_dv.c
@@ -649,11 +649,16 @@ dv_plugin_address_pretty_printer (void *cls, const char *type,
649{ 649{
650 if ( (0 == addrlen) && 650 if ( (0 == addrlen) &&
651 (0 == strcmp (type, "dv")) ) 651 (0 == strcmp (type, "dv")) )
652 asc (asc_cls, "dv", GNUNET_OK); 652 asc (asc_cls,
653 "dv",
654 GNUNET_OK);
653 else 655 else
654 asc (asc_cls, NULL, GNUNET_SYSERR); 656 asc (asc_cls,
655 657 NULL,
656 asc (asc_cls, NULL, GNUNET_OK); 658 GNUNET_SYSERR);
659 asc (asc_cls,
660 NULL,
661 GNUNET_OK);
657} 662}
658 663
659 664