fix typo
authorHerb Lewis <herb@samba.org>
Wed, 31 Mar 2004 20:24:10 +0000 (20:24 +0000)
committerHerb Lewis <herb@samba.org>
Wed, 31 Mar 2004 20:24:10 +0000 (20:24 +0000)
(This used to be commit 4b737b51a5cf0a862f4c1bd67d9d3dd49cc81b65)

source3/libsmb/cliconnect.c

index 63c91469e3e4841b50f9dd6fcfde05d520f7cb6e..cdf58c5b9130d59c0225f84532974d1f89121370 100644 (file)
@@ -590,7 +590,7 @@ static NTSTATUS cli_session_setup_ntlmssp(struct cli_state *cli, const char *use
                
                        /* now send that blob on its way */
                        if (!cli_session_setup_blob_send(cli, msg1)) {
-                               DEBUG(3, ("Failed to send NTLMSSP/SPENGO blob to server!\n"));
+                               DEBUG(3, ("Failed to send NTLMSSP/SPNEGO blob to server!\n"));
                                nt_status = NT_STATUS_UNSUCCESSFUL;
                        } else {
                                data_blob_free(&msg1);
@@ -822,7 +822,7 @@ BOOL cli_session_setup(struct cli_state *cli,
        if (cli->capabilities & CAP_EXTENDED_SECURITY) {
                ADS_STATUS status = cli_session_setup_spnego(cli, user, pass, workgroup);
                if (!ADS_ERR_OK(status)) {
-                       DEBUG(3, ("SPENGO login failed: %s\n", ads_errstr(status)));
+                       DEBUG(3, ("SPNEGO login failed: %s\n", ads_errstr(status)));
                        return False;
                }
                return True;