1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

[s3]loadparm: rename process_registry_service() to process_smbconf_service().

There is nothing registry-specific in that function.

Michael
This commit is contained in:
Michael Adam 2008-09-24 20:31:39 +02:00
parent 39f7ec3f74
commit b38ed2674b

View File

@ -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;
}