summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_reg_nt.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-06-16 20:59:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:57:18 -0500
commitb2db8a9bd3aad8e56ab4d95b05d2db7773057e8b (patch)
treed6bdf9c295b0f64c904194572415b89becec8e95 /source3/rpc_server/srv_reg_nt.c
parent17eb05228ee93c9790a0bacbfb0e5e282aa180d2 (diff)
downloadsamba-b2db8a9bd3aad8e56ab4d95b05d2db7773057e8b.tar.gz
samba-b2db8a9bd3aad8e56ab4d95b05d2db7773057e8b.tar.bz2
samba-b2db8a9bd3aad8e56ab4d95b05d2db7773057e8b.zip
r7649: * fix compile breakage (sorry, should have done a make clean before the
last checking). * rename unknown field in REG_GETVERSION * add server stubs for RegDeleteKey() and RegDeleteValue() (This used to be commit 023728c0595eaef60e357d32a25e2c4cee9e21f4)
Diffstat (limited to 'source3/rpc_server/srv_reg_nt.c')
-rw-r--r--source3/rpc_server/srv_reg_nt.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/rpc_server/srv_reg_nt.c b/source3/rpc_server/srv_reg_nt.c
index ec9a79f534..2a80594128 100644
--- a/source3/rpc_server/srv_reg_nt.c
+++ b/source3/rpc_server/srv_reg_nt.c
@@ -1175,3 +1175,20 @@ WERROR _reg_set_value(pipes_struct *p, REG_Q_SET_VALUE *q_u, REG_R_SET_VALUE *r
return WERR_ACCESS_DENIED;
}
+/*******************************************************************
+ ********************************************************************/
+
+WERROR _reg_delete_key(pipes_struct *p, REG_Q_DELETE_KEY *q_u, REG_R_DELETE_KEY *r_u)
+{
+ return WERR_ACCESS_DENIED;
+}
+
+
+/*******************************************************************
+ ********************************************************************/
+
+WERROR _reg_delete_value(pipes_struct *p, REG_Q_DELETE_VALUE *q_u, REG_R_DELETE_VALUE *r_u)
+{
+ return WERR_ACCESS_DENIED;
+}
+