diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-07-18 14:09:51 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-07-18 14:09:51 -0400 |
commit | 57bfc74ff4ec4c2980b2330f2badc54a8990842d (patch) | |
tree | 81bffba3be5c8037a5064ec5d49cf243130697fb /src/LYReadCFG.c | |
parent | fb4db89ab1d82336978b68a66532da971702e2fb (diff) | |
download | lynx-snapshots-57bfc74ff4ec4c2980b2330f2badc54a8990842d.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-36
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 1ec86c3c..8fdeaa0e 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -653,6 +653,9 @@ PUBLIC void read_cfg ARGS1( #endif /* VMS */ } + } else if (!strncasecomp(buffer, "FORCE_SSL_COOKIES_SECURE:", 25)) { + LYForceSSLCookiesSecure = is_true(buffer+25); + } else if (!strncasecomp(buffer, "ftp_proxy:", 10)) { if (getenv("ftp_proxy") == NULL) { #ifdef VMS @@ -1008,6 +1011,12 @@ PUBLIC void read_cfg ARGS1( } else if (!strncasecomp(buffer, "SCAN_FOR_BURIED_NEWS_REFS:", 26)) { scan_for_buried_news_references = is_true(buffer+26); + } else if (!strncasecomp(buffer, "SEEK_FRAG_AREA_IN_CUR:", 22)) { + LYSeekFragAREAinCur = is_true(buffer+22); + + } else if (!strncasecomp(buffer, "SEEK_FRAG_MAP_IN_CUR:", 21)) { + LYSeekFragMAPinCur = is_true(buffer+21); + } else if (!strncasecomp(buffer, "SET_COOKIES:", 12)) { LYSetCookies = is_true(buffer+12); |