From fdb68ec206c81d6affe6c3740366a27add2d94fa Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 25 May 2006 15:47:36 +0000 Subject: r15890: Use correct enum type (bug #3722) from Jason Mader . Jeremy. (This used to be commit a8eb1186a12b44178a28b013373f6f8a4356d9ec) --- source3/utils/smbcontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index ad05f8e948..0c6a1341c0 100644 --- a/source3/utils/smbcontrol.c +++ b/source3/utils/smbcontrol.c @@ -890,7 +890,7 @@ static BOOL do_winbind_offline(const struct process_id pid, ret = send_message(pid, MSG_WINBIND_OFFLINE, NULL, 0, False); /* Check that the entry "WINBINDD_OFFLINE" still exists. */ - tdb->ecode = 0; + tdb->ecode = TDB_SUCCESS; d = tdb_fetch_bystring( tdb, "WINBINDD_OFFLINE" ); /* As this is a key with no data we don't need to free, we -- cgit