diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-25 20:01:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:00 -0500 |
commit | e29325a6ce6aafb64485f1372ebb4148bffae57b (patch) | |
tree | e7723b5f019ec149a6d60f130d720c45f13452b2 /source3 | |
parent | 115062e7cea8c265b9f910360ae3e8b9af4c95a8 (diff) | |
download | samba-e29325a6ce6aafb64485f1372ebb4148bffae57b.tar.gz samba-e29325a6ce6aafb64485f1372ebb4148bffae57b.tar.bz2 samba-e29325a6ce6aafb64485f1372ebb4148bffae57b.zip |
r24050: Fix a typo
(This used to be commit 53027d0ee2dbe15beb2fce5d11a26f4ac0b08b9c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/sesssetup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index eb0d7b3e12..70819831f6 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -1257,7 +1257,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)); } |