aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fs/gnunet-directory.c4
-rw-r--r--src/fs/gnunet-download.c4
-rw-r--r--src/fs/gnunet-pseudonym.c2
-rw-r--r--src/fs/gnunet-publish.c4
-rw-r--r--src/fs/gnunet-search.c4
-rw-r--r--src/fs/gnunet-unindex.c4
6 files changed, 11 insertions, 11 deletions
diff --git a/src/fs/gnunet-directory.c b/src/fs/gnunet-directory.c
index c40a26b74..9bd5ed9c1 100644
--- a/src/fs/gnunet-directory.c
+++ b/src/fs/gnunet-directory.c
@@ -198,9 +198,9 @@ main (int argc, char *const *argv)
198 return (GNUNET_OK == 198 return (GNUNET_OK ==
199 GNUNET_PROGRAM_run (argc, 199 GNUNET_PROGRAM_run (argc,
200 argv, 200 argv,
201 "gnunet-directory", 201 "gnunet-directory [OPTIONS] FILENAME",
202 gettext_noop 202 gettext_noop
203 ("Display GNUnet directories."), 203 ("Display contents of a GNUnet directory"),
204 options, &run, NULL)) ? ret : 1; 204 options, &run, NULL)) ? ret : 1;
205} 205}
206 206
diff --git a/src/fs/gnunet-download.c b/src/fs/gnunet-download.c
index 114154d79..ccfa9c417 100644
--- a/src/fs/gnunet-download.c
+++ b/src/fs/gnunet-download.c
@@ -297,9 +297,9 @@ main (int argc, char *const *argv)
297 return (GNUNET_OK == 297 return (GNUNET_OK ==
298 GNUNET_PROGRAM_run (argc, 298 GNUNET_PROGRAM_run (argc,
299 argv, 299 argv,
300 "gnunet-download", 300 "gnunet-download [OPTIONS] URI",
301 gettext_noop 301 gettext_noop
302 ("Download files from GNUnet."), 302 ("Download files from GNUnet using a GNUnet CHK or LOC URI (gnunet://fs/chk/...)"),
303 options, &run, NULL)) ? ret : 1; 303 options, &run, NULL)) ? ret : 1;
304} 304}
305 305
diff --git a/src/fs/gnunet-pseudonym.c b/src/fs/gnunet-pseudonym.c
index 348805904..df67571a0 100644
--- a/src/fs/gnunet-pseudonym.c
+++ b/src/fs/gnunet-pseudonym.c
@@ -354,7 +354,7 @@ main (int argc, char *const *argv)
354 return (GNUNET_OK == 354 return (GNUNET_OK ==
355 GNUNET_PROGRAM_run (argc, 355 GNUNET_PROGRAM_run (argc,
356 argv, 356 argv,
357 "gnunet-pseudonym", 357 "gnunet-pseudonym [OPTIONS]",
358 gettext_noop 358 gettext_noop
359 ("Manage GNUnet pseudonyms."), 359 ("Manage GNUnet pseudonyms."),
360 options, &run, NULL)) ? ret : 1; 360 options, &run, NULL)) ? ret : 1;
diff --git a/src/fs/gnunet-publish.c b/src/fs/gnunet-publish.c
index 86d062a85..4ff1ad000 100644
--- a/src/fs/gnunet-publish.c
+++ b/src/fs/gnunet-publish.c
@@ -689,9 +689,9 @@ main (int argc, char *const *argv)
689 return (GNUNET_OK == 689 return (GNUNET_OK ==
690 GNUNET_PROGRAM_run (argc, 690 GNUNET_PROGRAM_run (argc,
691 argv, 691 argv,
692 "gnunet-publish", 692 "gnunet-publish [OPTIONS] FILENAME",
693 gettext_noop 693 gettext_noop
694 ("Publish files on GNUnet."), 694 ("Publish a file or directory on GNUnet"),
695 options, &run, NULL)) ? ret : 1; 695 options, &run, NULL)) ? ret : 1;
696} 696}
697 697
diff --git a/src/fs/gnunet-search.c b/src/fs/gnunet-search.c
index 505d88aa3..cc3ef7c87 100644
--- a/src/fs/gnunet-search.c
+++ b/src/fs/gnunet-search.c
@@ -315,9 +315,9 @@ main (int argc, char *const *argv)
315 return (GNUNET_OK == 315 return (GNUNET_OK ==
316 GNUNET_PROGRAM_run (argc, 316 GNUNET_PROGRAM_run (argc,
317 argv, 317 argv,
318 "gnunet-search", 318 "gnunet-search [OPTIONS] KEYWORD",
319 gettext_noop 319 gettext_noop
320 ("Search GNUnet."), 320 ("Search GNUnet for files that were published on GNUnet"),
321 options, &run, NULL)) ? ret : 1; 321 options, &run, NULL)) ? ret : 1;
322} 322}
323 323
diff --git a/src/fs/gnunet-unindex.c b/src/fs/gnunet-unindex.c
index f73d2f0cc..c1d1890db 100644
--- a/src/fs/gnunet-unindex.c
+++ b/src/fs/gnunet-unindex.c
@@ -195,9 +195,9 @@ main (int argc, char *const *argv)
195 return (GNUNET_OK == 195 return (GNUNET_OK ==
196 GNUNET_PROGRAM_run (argc, 196 GNUNET_PROGRAM_run (argc,
197 argv, 197 argv,
198 "gnunet-unindex", 198 "gnunet-unindex [OPTIONS] FILENAME",
199 gettext_noop 199 gettext_noop
200 ("Unindex files."), 200 ("Unindex a file that was previously indexed with gnunet-publish."),
201 options, &run, NULL)) ? ret : 1; 201 options, &run, NULL)) ? ret : 1;
202} 202}
203 203