diff options
author | Michael Adam <obnox@samba.org> | 2007-12-29 02:27:20 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-29 02:27:20 +0100 |
commit | 8093a75d6f44644b70023272f186575c2372c54b (patch) | |
tree | 0e661ab8cfd02a3fbd96e6d5a837825421b62cfc | |
parent | 27f0130434d978cf98bab4db38718cd1d3856535 (diff) | |
download | samba-8093a75d6f44644b70023272f186575c2372c54b.tar.gz samba-8093a75d6f44644b70023272f186575c2372c54b.tar.bz2 samba-8093a75d6f44644b70023272f186575c2372c54b.zip |
Make the main net_conf functions static in net_conf.c
Michael
(This used to be commit dd6e09a65e67a9a16b35b078ebfb41da09926029)
-rw-r--r-- | source3/utils/net_conf.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index e607d099dc..8140941da2 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -296,7 +296,7 @@ static bool globals_exist(void) * the conf functions */ -int net_conf_list(int argc, const char **argv) +static int net_conf_list(int argc, const char **argv) { WERROR werr = WERR_OK; int ret = -1; @@ -369,7 +369,7 @@ done: return ret; } -int net_conf_import(int argc, const char **argv) +static int net_conf_import(int argc, const char **argv) { int ret = -1; const char *filename = NULL; @@ -455,7 +455,7 @@ done: return ret; } -int net_conf_listshares(int argc, const char **argv) +static int net_conf_listshares(int argc, const char **argv) { WERROR werr = WERR_OK; int ret = -1; @@ -497,7 +497,7 @@ done: return ret; } -int net_conf_drop(int argc, const char **argv) +static int net_conf_drop(int argc, const char **argv) { int ret = -1; WERROR werr; @@ -520,7 +520,7 @@ done: return ret; } -int net_conf_showshare(int argc, const char **argv) +static int net_conf_showshare(int argc, const char **argv) { int ret = -1; WERROR werr = WERR_OK; @@ -552,7 +552,7 @@ done: return ret; } -int net_conf_addshare(int argc, const char **argv) +static int net_conf_addshare(int argc, const char **argv) { int ret = -1; WERROR werr = WERR_OK; @@ -707,7 +707,7 @@ done: return ret; } -int net_conf_delshare(int argc, const char **argv) +static int net_conf_delshare(int argc, const char **argv) { int ret = -1; const char *sharename = NULL; |