From: Jeremy Allison Date: Thu, 12 Mar 2020 17:16:42 +0000 (-0700) Subject: s3: smbd: reply_ulogoffX() Update to modern coding standards. X-Git-Tag: ldb-2.2.0~1429 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cda76ad29db0cfbffa3dbb0764ec5dda24490f9;p=thirdparty%2Fsamba.git 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 Reviewed-by: Ralph Boehme --- diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 09e068abf29..d488d997273 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -2626,8 +2626,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);