diff options
author | Miles Bader <miles@gnu.org> | 1996-06-26 21:02:41 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-06-26 21:02:41 +0000 |
commit | 611729bcbbf12ae037f603dffa0f3840f7c51c09 (patch) | |
tree | 8b852b362c3352864b4e7ace32efe8f107cf23c3 /libnetfs/get-options.c | |
parent | 4b6119225ab69a040505eec0c9f3730eb826fc17 (diff) |
(netfs_get_options): Call netfs_append_std_options.
Diffstat (limited to 'libnetfs/get-options.c')
-rw-r--r-- | libnetfs/get-options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetfs/get-options.c b/libnetfs/get-options.c index 47bc6214..3eb11900 100644 --- a/libnetfs/get-options.c +++ b/libnetfs/get-options.c @@ -23,9 +23,9 @@ #include "netfs.h" error_t -netfs_get_options (char **argz, unsigned *argz_len) +netfs_get_options (char **argz, size_t *argz_len) { *argz = 0; *argz_len = 0; - return netfs_unparse_runtime_options (argz, argz_len); + return netfs_append_std_options (argz, argz_len); } |