diff options
author | Volker Lendecke <vl@samba.org> | 2008-08-12 11:59:13 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-08-12 11:59:13 +0200 |
commit | 68fe1a1d86dddc387753220790bb9ac5c096edf1 (patch) | |
tree | 7f6602b337badf42b2a6a0f6021e600a48a0060f /source3/winbindd | |
parent | a93d0f6f4e40c0130f8e14eaa555cdbbccce825e (diff) | |
download | samba-68fe1a1d86dddc387753220790bb9ac5c096edf1.tar.gz samba-68fe1a1d86dddc387753220790bb9ac5c096edf1.tar.bz2 samba-68fe1a1d86dddc387753220790bb9ac5c096edf1.zip |
Remove two unused variables
(This used to be commit 257b0401ee675b6b7eddf2b46a0f8115940e6640)
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap_tdb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/winbindd/idmap_tdb.c b/source3/winbindd/idmap_tdb.c index 2b9520d54d..9e66eed0c8 100644 --- a/source3/winbindd/idmap_tdb.c +++ b/source3/winbindd/idmap_tdb.c @@ -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); |