diff options
author | Michael Adam <obnox@samba.org> | 2008-09-24 20:31:39 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-09-27 22:28:25 +0200 |
commit | b38ed2674b42c27ec4183a84b6e73dfa1387b398 (patch) | |
tree | fff0a8006cff1094acb4777c102b5a4460387810 /source3/param | |
parent | 39f7ec3f7468d8b044f4d1d403aa60a306451d20 (diff) | |
download | samba-b38ed2674b42c27ec4183a84b6e73dfa1387b398.tar.gz samba-b38ed2674b42c27ec4183a84b6e73dfa1387b398.tar.bz2 samba-b38ed2674b42c27ec4183a84b6e73dfa1387b398.zip |
[s3]loadparm: rename process_registry_service() to process_smbconf_service().
There is nothing registry-specific in that function.
Michael
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 87af7a3411..a879859e75 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -6560,7 +6560,7 @@ static struct smbconf_ctx *lp_smbconf_ctx(void) return conf_ctx; } -static bool process_registry_service(struct smbconf_service *service) +static bool process_smbconf_service(struct smbconf_service *service) { uint32_t count; bool ret; @@ -6616,7 +6616,7 @@ static bool process_registry_globals(void) goto done; } - ret = process_registry_service(service); + ret = process_smbconf_service(service); if (!ret) { goto done; } @@ -6654,7 +6654,7 @@ static bool process_registry_shares(void) if (strequal(service[count]->name, GLOBAL_NAME)) { continue; } - ret = process_registry_service(service[count]); + ret = process_smbconf_service(service[count]); if (!ret) { goto done; } |