Rename netlogon_params_fetch_reg_values() to netlogon_params_fetch_values().
authorMichael Adam <obnox@samba.org>
Sat, 19 Jan 2008 21:42:30 +0000 (22:42 +0100)
committerMichael Adam <obnox@samba.org>
Sun, 20 Jan 2008 01:03:39 +0000 (02:03 +0100)
Michael
(This used to be commit 54e7c8098565495a833500d4b2a8d5240ed55c82)

source3/registry/reg_backend_netlogon_params.c

index ff5a33e6e44ee1ebb0195d11ad57c10e05e74bbc..d63cd6b31b52f804096282b28548e037652a2b40 100644 (file)
@@ -31,8 +31,7 @@
 
 extern REGISTRY_OPS regdb_ops;
 
-static int netlogon_params_fetch_reg_values(const char *key,
-                                           REGVAL_CTR *regvals)
+static int netlogon_params_fetch_values(const char *key, REGVAL_CTR *regvals)
 {
        uint32 dwValue;
        
@@ -52,6 +51,6 @@ static int netlogon_params_fetch_subkeys(const char *key,
 }
 
 REGISTRY_OPS netlogon_params_reg_ops = {
-       .fetch_values = netlogon_params_fetch_reg_values,
+       .fetch_values = netlogon_params_fetch_values,
        .fetch_subkeys = netlogon_params_fetch_subkeys,
 };