removing unused function
authorGerald Carter <jerry@samba.org>
Tue, 22 Jul 2003 15:08:34 +0000 (15:08 +0000)
committerGerald Carter <jerry@samba.org>
Tue, 22 Jul 2003 15:08:34 +0000 (15:08 +0000)
(This used to be commit b8394a107d3448434f1a34076eaab8e6dd9a8a9d)

source3/passdb/pdb_tdb.c

index 051a6993573ebd906140ef3553c296e8ab76ad4e..7c2156455aa713a953a878232ed3e0fa4eff395f 100644 (file)
@@ -437,49 +437,6 @@ done:
        return (ret);   
 }
 
-#if 0
-/***************************************************************************
- Allocates a new RID and returns it to the caller as a domain sid
-
- NOTE: Use carefully, do not waste RIDs they are a limited resource!
-                                                       - SSS
- ***************************************************************************/
-
-static NTSTATUS tdbsam_get_next_sid (struct pdb_methods *my_methods, DOM_SID *sid)
-{
-       NTSTATUS ret = NT_STATUS_UNSUCCESSFUL;
-       struct tdbsam_privates *tdb_state = (struct tdbsam_privates *)my_methods->private_data;
-       TDB_CONTEXT     *pwd_tdb;
-       uint32          rid;
-
-       if (sid == NULL) {
-               return NT_STATUS_INVALID_PARAMETER;
-       }
-       
-       pwd_tdb = tdb_open_log(tdb_state->tdbsam_location, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0600);
-       if (!pwd_tdb)
-       {
-               DEBUG(0, ("tdbsam_get_next_sid: Unable to open TDB passwd (%s)!\n", tdb_state->tdbsam_location));
-               return NT_STATUS_UNSUCCESSFUL;
-       }
-
-       rid = BASE_RID;
-       if (tdb_change_uint32_atomic(pwd_tdb, "RID_COUNTER", &rid, 1)) {
-
-               sid_copy(sid, get_global_sam_sid());
-               if (!sid_append_rid(sid, rid)) {
-                       goto done;
-               }
-               
-               ret = NT_STATUS_OK;
-       }
-
-done:
-       tdb_close (pwd_tdb);
-       return ret;
-}
-#endif
-
 /***************************************************************************
  Modifies an existing SAM_ACCOUNT
 ****************************************************************************/