s3-lsa: let _lsa_Delete return NT_STATUS_NOT_SUPPORTED as w2k3 does.
authorGünther Deschner <gd@samba.org>
Wed, 15 Jul 2009 23:05:25 +0000 (01:05 +0200)
committerGünther Deschner <gd@samba.org>
Fri, 17 Jul 2009 11:55:29 +0000 (13:55 +0200)
Guenther

source3/rpc_server/srv_lsa_nt.c

index 6fb83275764e83507bba99434f2a6c8550dd543e..ace045cfa5df3a5addc63119ae60628a09745ae1 100644 (file)
@@ -2431,18 +2431,22 @@ NTSTATUS _lsa_EnumAccountsWithUserRight(pipes_struct *p,
        return NT_STATUS_OK;
 }
 
+/***************************************************************************
+ _lsa_Delete
+ ***************************************************************************/
+
+NTSTATUS _lsa_Delete(pipes_struct *p,
+                    struct lsa_Delete *r)
+{
+       return NT_STATUS_NOT_SUPPORTED;
+}
+
 /*
  * From here on the server routines are just dummy ones to make smbd link with
  * librpc/gen_ndr/srv_lsa.c. These routines are actually never called, we are
  * pulling the server stubs across one by one.
  */
 
-NTSTATUS _lsa_Delete(pipes_struct *p, struct lsa_Delete *r)
-{
-       p->rng_fault_state = True;
-       return NT_STATUS_NOT_IMPLEMENTED;
-}
-
 NTSTATUS _lsa_SetSecObj(pipes_struct *p, struct lsa_SetSecObj *r)
 {
        p->rng_fault_state = True;