diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-07 14:45:26 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-07 14:45:26 +0200 |
commit | 626596bcb027313f39069be94f85f3f523feb365 (patch) | |
tree | 0b2aa7a57d1c1fdef287e9e1a34f3ddda28de4b4 | |
parent | 4241dd5673566a61add85bd9eb52d4ae7db2750a (diff) |
procfs: fix runtime option parsing
* procfs/main.c (netfs_runtime_argp): Actually use the runtime option
parser.
-rw-r--r-- | procfs/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procfs/main.c b/procfs/main.c index d775b325..f773c09c 100644 --- a/procfs/main.c +++ b/procfs/main.c @@ -222,7 +222,7 @@ struct argp netfs_runtime_argp_ = { }; /* Used by netfs_set_options to handle runtime option parsing. */ -struct argp *netfs_runtime_argp = &argp; +struct argp *netfs_runtime_argp = &netfs_runtime_argp_; /* Return an argz string describing the current options. Fill *ARGZ with a pointer to newly malloced storage holding the list and *LEN |