summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2020-03-12 10:16:42 -0700
committerKarolin Seeger <kseeger@samba.org>2020-04-07 08:12:35 +0000
commitaa58b41b8b91f8b80ca505980d6809ff67ddbee9 (patch)
tree8c0e9d9fc33820d4b659edd4b13d43111f3eb398
parentb619e2042a436e40ee445db102701c9dc9515492 (diff)
downloadsamba-aa58b41b8b91f8b80ca505980d6809ff67ddbee9.tar.gz
s3: smbd: reply_ulogoffX() Update to modern coding standards.
Minimizes the diff in the later commits. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14301 Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> (cherry picked from commit 9cda76ad29db0cfbffa3dbb0764ec5dda24490f9)
-rw-r--r--source3/smbd/reply.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index f76e9ee0bc8..aa820916443 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -2625,8 +2625,8 @@ void reply_ulogoffX(struct smb_request *smb1req)
timeval_to_nttime(&now),
&session);
if (!NT_STATUS_IS_OK(status)) {
- DEBUG(3,("ulogoff, vuser id %llu does not map to user.\n",
- (unsigned long long)smb1req->vuid));
+ DBG_WARNING("ulogoff, vuser id %llu does not map to user.\n",
+ (unsigned long long)smb1req->vuid);
smb1req->vuid = UID_FIELD_INVALID;
reply_force_doserror(smb1req, ERRSRV, ERRbaduid);