diff options
author | Michael Adam <obnox@samba.org> | 2007-12-25 03:01:59 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2007-12-25 03:01:59 +0100 |
commit | 2764f5a0a6404b1ade9b996783e0a131b7b2d231 (patch) | |
tree | fdded1a9a4fc01dd12156cd857e1b120f9080ba0 /source3 | |
parent | 8e53343a74ab6c8947523ca9bd9a8c1583a8691e (diff) | |
download | samba-2764f5a0a6404b1ade9b996783e0a131b7b2d231.tar.gz samba-2764f5a0a6404b1ade9b996783e0a131b7b2d231.tar.bz2 samba-2764f5a0a6404b1ade9b996783e0a131b7b2d231.zip |
Rename drop_smbconf_internal() to libnet_smbconf_drop().
Michael
(This used to be commit 5873e6a1f8242e07b1699366a536350a7199c28c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libnet/libnet_conf.c | 2 | ||||
-rw-r--r-- | source3/utils/net_conf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c index e81b8b4111..bc8dc9e4d0 100644 --- a/source3/libnet/libnet_conf.c +++ b/source3/libnet/libnet_conf.c @@ -243,7 +243,7 @@ done: * **********************************************************************/ -WERROR drop_smbconf_internal(TALLOC_CTX *ctx) +WERROR libnet_smbconf_drop(TALLOC_CTX *ctx) { char *path, *p; WERROR werr = WERR_OK; diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index e46ff758ef..6d59643bee 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -538,7 +538,7 @@ int net_conf_drop(int argc, const char **argv) goto done; } - werr = drop_smbconf_internal(NULL); + werr = libnet_smbconf_drop(NULL); if (!W_ERROR_IS_OK(werr)) { d_fprintf(stderr, "Error deleting configuration: %s\n", dos_errstr(werr)); |