commit-hurd
[Top][All Lists]
Advanced

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

[hurd] 03/17: procfs: Move setting default parameters to a separate func


From: Samuel Thibault
Subject: [hurd] 03/17: procfs: Move setting default parameters to a separate function
Date: Mon, 15 Feb 2016 09:10:02 +0000

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

sthibault pushed a commit to branch upstream
in repository hurd.

commit 63abc67ed48dbdf8dfe01fd1f29a97d795f907ce
Author: Samuel Thibault <address@hidden>
Date:   Tue Jan 19 22:34:35 2016 +0100

    procfs: Move setting default parameters to a separate function
    
    * procfs/main.c (set_default_options): New function
    (argp_parser): Call `set_default_options'.
---
 procfs/main.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/procfs/main.c b/procfs/main.c
index 509f488..5f84d62 100644
--- a/procfs/main.c
+++ b/procfs/main.c
@@ -50,6 +50,13 @@ uid_t opt_anon_owner;
 #define NOEXEC_KEY -2 /* Likewise. */
 #define NOSUID_KEY -3 /* Likewise. */
 
+static void set_default_options (void)
+{
+  opt_clk_tck = 100;
+  opt_stat_mode = 0444;
+  opt_fake_self = 1;
+}
+
 static error_t
 argp_parser (int key, char *arg, struct argp_state *state)
 {
@@ -97,9 +104,7 @@ argp_parser (int key, char *arg, struct argp_state *state)
       break;
 
     case 'c':
-      opt_clk_tck = 100;
-      opt_stat_mode = 0444;
-      opt_fake_self = 1;
+      set_default_options();
       break;
 
     case 'a':

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

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