From af921c452d2d622984bf32924a6f3c877ea66f8f Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 26 Sep 2003 02:04:03 +0000 Subject: More bug #413. Fix bad html table row termination in SWAT wizard code found by Monyo. Also remove debugging d_printf() which snuck in the last commit. (This used to be commit 0192f41003af0f8e8c117cf7eb8ad886b8b03749) --- source3/web/swat.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'source3/web') diff --git a/source3/web/swat.c b/source3/web/swat.c index f4c12cc02f..2b2686cc5a 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -737,8 +737,10 @@ static void wizard_page(void) d_printf(" Not Used ", (winstype == 0) ? "checked" : ""); d_printf(" Server for client use ", (winstype == 1) ? "checked" : ""); d_printf(" Client of another WINS server ", (winstype == 2) ? "checked" : ""); + d_printf("\n"); + d_printf("Remote WINS Server Error: WINS Server Mode and WINS Support both set in smb.conf"); d_printf("Please Select desired WINS mode above."); } - d_printf(""); d_printf("%s\n","Expose Home Directories: "); d_printf(" Yes", (have_home == -1) ? "" : "checked "); d_printf(" No", (have_home == -1 ) ? "checked" : ""); @@ -1321,8 +1322,6 @@ static void printers_page(void) iNumNonAutoPrintServices = lp_numservices(); load_printers(); - d_printf("hello \" there\n"); - cgi_setup(dyn_SWATDIR, !demo_mode); print_header(); -- cgit