diff options
Diffstat (limited to 'source3/web/swat.c')
-rw-r--r-- | source3/web/swat.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index b729e3b241..060f024581 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -156,7 +156,9 @@ static int include_html(const char *fname) } while ((ret = read(fd, buf, sizeof(buf))) > 0) { - write(1, buf, ret); + if (write(1, buf, ret) == -1) { + break; + } } close(fd); @@ -1253,8 +1255,8 @@ static void printers_page(void) printf("<H2>%s</H2>\n", _("Printer Parameters")); printf("<H3>%s</H3>\n", _("Important Note:")); - printf(_("Printer names marked with [*] in the Choose Printer drop-down box ")); - printf(_("are autoloaded printers from ")); + printf("%s",_("Printer names marked with [*] in the Choose Printer drop-down box ")); + printf("%s",_("are autoloaded printers from ")); printf("<A HREF=\"/swat/help/smb.conf.5.html#printcapname\" target=\"docs\">%s</A>\n", _("Printcap Name")); printf("%s\n", _("Attempting to delete these printers from SWAT will have no effect.")); |