diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-25 20:01:03 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2007-07-25 20:01:03 +0000 |
commit | e1ed902dd3b98ec42f04b69d00dd263dd359e45f (patch) | |
tree | c1ef70f86c8deff1492e18310de83c014d9ae187 | |
parent | 31a42c05d148a1549a2aeb7e3b51f95e0d52a882 (diff) | |
download | samba-e1ed902dd3b98ec42f04b69d00dd263dd359e45f.tar.gz samba-e1ed902dd3b98ec42f04b69d00dd263dd359e45f.tar.xz samba-e1ed902dd3b98ec42f04b69d00dd263dd359e45f.zip |
r24050: Fix a typo
-rw-r--r-- | source/smbd/sesssetup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/smbd/sesssetup.c b/source/smbd/sesssetup.c index 6d03fce010b..39a6ad62401 100644 --- a/source/smbd/sesssetup.c +++ b/source/smbd/sesssetup.c @@ -1255,7 +1255,9 @@ int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf, if (CVAL(inbuf, smb_wct) == 12 && (smb_flag2 & FLAGS2_EXTENDED_SECURITY)) { if (!global_spnego_negotiated) { - DEBUG(0,("reply_sesssetup_and_X: Rejecting attempt at SPNEGO session setup when it was not negoitiated.\n")); + DEBUG(0, ("reply_sesssetup_and_X: Rejecting attempt " + "at SPNEGO session setup when it was not " + "negotiated.\n")); return ERROR_NT(nt_status_squash(NT_STATUS_LOGON_FAILURE)); } |