aboutsummaryrefslogtreecommitdiff
path: root/src/util/getopt_helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/getopt_helpers.c')
-rw-r--r--src/util/getopt_helpers.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/util/getopt_helpers.c b/src/util/getopt_helpers.c
index 05856beee..80d1037bb 100644
--- a/src/util/getopt_helpers.c
+++ b/src/util/getopt_helpers.c
@@ -178,10 +178,13 @@ format_help (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
178 } 178 }
179 pd = GNUNET_OS_project_data_get (); 179 pd = GNUNET_OS_project_data_get ();
180 printf ("Report bugs to %s.\n" 180 printf ("Report bugs to %s.\n"
181 "GNUnet home page: %s\n" 181 "Home page: %s\n",
182 "General help using GNU software: http://www.gnu.org/gethelp/\n",
183 pd->bug_email, 182 pd->bug_email,
184 pd->homepage); 183 pd->homepage);
184
185 if (0 != pd->is_gnu)
186 printf ("General help using GNU software: http://www.gnu.org/gethelp/\n");
187
185 return GNUNET_NO; 188 return GNUNET_NO;
186} 189}
187 190