summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-11-22 06:17:46 +0000
committerGerald Carter <jerry@samba.org>2003-11-22 06:17:46 +0000
commita2b82b408b528a99037a390aabad867c25604836 (patch)
tree195d292aaa2f047a60a6d469e3425936ccab1698 /source3
parent177ff4d64c9a8891e827e927bd2354e28d4cc9d6 (diff)
downloadsamba-a2b82b408b528a99037a390aabad867c25604836.tar.gz
samba-a2b82b408b528a99037a390aabad867c25604836.tar.bz2
samba-a2b82b408b528a99037a390aabad867c25604836.zip
debug and swat fixes from 3.0
(This used to be commit 52c1973f39f4c4161097843fcf395e0102531575)
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/trusts_util.c1
-rw-r--r--source3/web/cgi.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/source3/libsmb/trusts_util.c b/source3/libsmb/trusts_util.c
index c18641bc84..2c6eb1b55a 100644
--- a/source3/libsmb/trusts_util.c
+++ b/source3/libsmb/trusts_util.c
@@ -181,6 +181,7 @@ BOOL enumerate_domain_trusts( TALLOC_CTX *mem_ctx, const char *domain,
done:
/* cleanup */
if (cli) {
+ DEBUG(10,("enumerate_domain_trusts: shutting down connection...\n"));
cli_nt_session_close( cli );
cli_shutdown( cli );
}
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index 49a8fa92de..07e3ee38fb 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -355,7 +355,8 @@ static BOOL cgi_handle_authorization(char *line)
}
err:
- cgi_setup_error("401 Bad Authorization", "",
+ cgi_setup_error("401 Bad Authorization",
+ "WWW-Authenticate: Basic realm=\"SWAT\"\r\n",
"username or password incorrect");
passwd_free(&pass);