gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet-fuse] branch master updated: port to current GNUNET


From: gnunet
Subject: [GNUnet-SVN] [gnunet-fuse] branch master updated: port to current GNUNET_GETOPT API
Date: Sat, 25 Mar 2017 21:25:03 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet-fuse.

The following commit(s) were added to refs/heads/master by this push:
     new 3503aef  port to current GNUNET_GETOPT API
3503aef is described below

commit 3503aeff6db6b39b85e13f9483d46d49ce9cec55
Author: Christian Grothoff <address@hidden>
AuthorDate: Sat Mar 25 21:25:00 2017 +0100

    port to current GNUNET_GETOPT API
---
 src/fuse/gnunet-fuse.c | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

diff --git a/src/fuse/gnunet-fuse.c b/src/fuse/gnunet-fuse.c
index aeebb46..7d71975 100644
--- a/src/fuse/gnunet-fuse.c
+++ b/src/fuse/gnunet-fuse.c
@@ -496,26 +496,36 @@ run (void *cls,
 int
 main (int argc, char *const *argv)
 {
-  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
-    {'s', "source", "URI",
-     gettext_noop ("Source you get the URI from"), 1,
-     &GNUNET_GETOPT_set_string, &source},
-    {'d', "directory", "PATH",
-     gettext_noop ("path to your mountpoint"), 1,
-     &GNUNET_GETOPT_set_string, &directory},
-    {'t', "single-threaded", NULL,
-     gettext_noop ("run in single-threaded mode"), 0,
-     &GNUNET_GETOPT_set_one, &single_threaded},
+  struct GNUNET_GETOPT_CommandLineOption options[] = {
+    GNUNET_GETOPT_option_string ('s',
+                                "source",
+                                "URI",
+                                gettext_noop ("Source you get the URI from"), 
+                                &source),
+    GNUNET_GETOPT_option_filename ('d',
+                                  "directory",
+                                  "PATH",
+                                  gettext_noop ("path to your mountpoint"), 
+                                  &directory),
+    GNUNET_GETOPT_option_flag ('t',
+                              "single-threaded",
+                              gettext_noop ("run in single-threaded mode"), 
+                              &single_threaded),
     GNUNET_GETOPT_OPTION_END
   };
-  GNUNET_log_setup ("gnunet-fuse", "DEBUG", NULL);
+  GNUNET_log_setup ("gnunet-fuse",
+                   "DEBUG",
+                   NULL);
   return (GNUNET_OK ==
          GNUNET_PROGRAM_run2 (argc,
                               argv,
                               "gnunet-fuse -s URI [-- FUSE-OPTIONS] 
DIRECTORYNAME",
                               gettext_noop
                               ("fuse"),
-                              options, &run, NULL, GNUNET_YES)) ? ret : 1;
+                              options,
+                              &run,
+                              NULL,
+                              GNUNET_YES)) ? ret : 1;
 }
 
 /* end of gnunet-fuse.c */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]