summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-08-12 11:59:13 +0200
committerVolker Lendecke <vl@samba.org>2008-08-12 11:59:13 +0200
commit68fe1a1d86dddc387753220790bb9ac5c096edf1 (patch)
tree7f6602b337badf42b2a6a0f6021e600a48a0060f /source3
parenta93d0f6f4e40c0130f8e14eaa555cdbbccce825e (diff)
downloadsamba-68fe1a1d86dddc387753220790bb9ac5c096edf1.tar.gz
samba-68fe1a1d86dddc387753220790bb9ac5c096edf1.tar.bz2
samba-68fe1a1d86dddc387753220790bb9ac5c096edf1.zip
Remove two unused variables
(This used to be commit 257b0401ee675b6b7eddf2b46a0f8115940e6640)
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/idmap_tdb.c3
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);