diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2012-05-06 14:20:29 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2012-05-06 14:20:29 +0000 |
commit | fbfb68b7c76a90879e49b1ef4792503682dff9e5 (patch) | |
tree | 657425618c9cf88584ddc951846625a02863c91c /src/htshelp.c | |
parent | 78a63125160c4df021b7be08761435b5cc0f5f2f (diff) |
UTF-8 filenames handling (based on HTML page charset)
Diffstat (limited to 'src/htshelp.c')
-rw-r--r-- | src/htshelp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/htshelp.c b/src/htshelp.c index 676ed46..6ba34c6 100644 --- a/src/htshelp.c +++ b/src/htshelp.c @@ -262,7 +262,7 @@ void help_wizard(httrackp* opt) { linput(stdin,str,250); if (strnotempty(str)) { if (!((str[0]=='y') || (str[0]=='Y'))) - return 0; + return ; } printf("\n"); @@ -468,6 +468,7 @@ void help(char* app,int more) { infomsg(" o *generate output html file in case of error (404..) (o0 don't generate)"); infomsg(" X *purge old files after update (X0 keep delete)"); infomsg(" %p preserve html files 'as is' (identical to '-K4 -%F \"\"')"); + infomsg(" %T links conversion to UTF-8"); infomsg(""); infomsg("Spider options:"); infomsg(" bN accept cookies in cookies.txt (0=do not accept,* 1=accept)"); |