aboutsummaryrefslogtreecommitdiff
path: root/src/util/getopt_helpers.c
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2019-08-08 17:23:26 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2019-08-08 17:23:26 +0200
commitd39c8087c4872094105270b193f68e191b5c6015 (patch)
tree54e3155ce7b3552524900415cac52438d2e13ab2 /src/util/getopt_helpers.c
parent6b23a8225efed99498f891b589c7c5171567192b (diff)
downloadgnunet-d39c8087c4872094105270b193f68e191b5c6015.tar.gz
gnunet-d39c8087c4872094105270b193f68e191b5c6015.zip
pathes to better support third party extensions from ML. Thanks to Alessio Vanni
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