diff options
Diffstat (limited to '')
-rw-r--r-- | w3mbookmark.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/w3mbookmark.c b/w3mbookmark.c index 5e0da84..b7b313b 100644 --- a/w3mbookmark.c +++ b/w3mbookmark.c @@ -1,4 +1,4 @@ -/* $Id: w3mbookmark.c,v 1.8 2003/01/15 17:13:22 ukai Exp $ */ +/* $Id: w3mbookmark.c,v 1.9 2003/09/22 21:02:22 ukai Exp $ */ #include <stdlib.h> #include <stdio.h> #include "config.h" @@ -57,7 +57,11 @@ print_bookmark_panel(char *bmark, char *url, char *title) FILE *f; char *p; +#if LANG == JA + printf("Content-Type: text/html; charset=EUC-JP\n\n"); +#else printf("Content-Type: text/html\n\n"); +#endif printf(bkmark_src1, html_quote(bmark), html_quote(Local_cookie)); if ((f = fopen(bmark, "r")) != NULL) { printf("<tr><td>Section:<td><select name=\"section\">\n"); |