diff options
author | Michael Adam <obnox@samba.org> | 2010-06-01 14:03:32 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-08-14 02:10:29 +0200 |
commit | b28371b9a4145d5d84d290a5fece40536838b7ed (patch) | |
tree | a83ea7b6192101a18626424d069287d9f6a33e94 /source3 | |
parent | a8492d2a927a6f381d0ba091019a0d3e90788d4f (diff) | |
download | samba-b28371b9a4145d5d84d290a5fece40536838b7ed.tar.gz samba-b28371b9a4145d5d84d290a5fece40536838b7ed.tar.bz2 samba-b28371b9a4145d5d84d290a5fece40536838b7ed.zip |
s3:idmap_tdb2: fix a debug message
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/idmap_tdb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c index f39969d1f8..409ac6debe 100644 --- a/source3/winbindd/idmap_tdb2.c +++ b/source3/winbindd/idmap_tdb2.c @@ -289,7 +289,7 @@ static NTSTATUS idmap_tdb2_allocate_id(struct unixid *xid) if (NT_STATUS_IS_OK(status)) { xid->id = state.hwm; - DEBUG(10,("New %s = %d\n", hwmtype, hwm)); + DEBUG(10,("New %s = %d\n", hwmtype, state.hwm)); } else { DEBUG(1, ("Error allocating a new %s\n", hwmtype)); } |