Remove two unused variables
authorVolker Lendecke <vl@samba.org>
Tue, 12 Aug 2008 09:59:13 +0000 (11:59 +0200)
committerVolker Lendecke <vl@samba.org>
Tue, 12 Aug 2008 09:59:13 +0000 (11:59 +0200)
(This used to be commit 257b0401ee675b6b7eddf2b46a0f8115940e6640)

source3/winbindd/idmap_tdb.c

index 2b9520d54da4d3d29b0558323f039a41de5ac79c..9e66eed0c8882437d63d2335c5b724754afd7823 100644 (file)
@@ -313,12 +313,11 @@ static NTSTATUS idmap_tdb_alloc_init( const char *params )
 {
        NTSTATUS ret;
        TALLOC_CTX *ctx;
-       const char *range;
        uid_t low_uid = 0;
        uid_t high_uid = 0;
        gid_t low_gid = 0;
        gid_t high_gid = 0;
-       uint32_t low_id, high_id;
+       uint32_t low_id;
 
        /* use our own context here */
        ctx = talloc_new(NULL);