summaryrefslogtreecommitdiff
path: root/source/smbd
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-01-14 18:24:09 +0000
committerLuke Leighton <lkcl@samba.org>2000-01-14 18:24:09 +0000
commit03460dbc8cb22f79a2c1de999a9101c08019639a (patch)
treee6ec2e84c3d19742bdbaf916b2a812d67a0bde5c /source/smbd
parenta060a4fe4a2620ffa3c0600c632e0584383049ce (diff)
downloadsamba-03460dbc8cb22f79a2c1de999a9101c08019639a.tar.gz
possible bug to do with joining domains. supposed to return ERROR(0, status)
not status. *dur*.
Diffstat (limited to 'source/smbd')
-rw-r--r--source/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c
index d46d5b92656..8bdbec7f127 100644
--- a/source/smbd/reply.c
+++ b/source/smbd/reply.c
@@ -400,7 +400,7 @@ static int session_trust_account(connection_struct *conn,
}
SSVAL(outbuf, smb_flg2, FLAGS2_32_BIT_ERROR_CODES);
- return status;
+ return ERROR(0, status);
}
/****************************************************************************