diff options
-rw-r--r-- | dpi/cookies.c | 4 | ||||
-rw-r--r-- | src/cookies.c | 2 | ||||
-rw-r--r-- | src/html.cc | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dpi/cookies.c b/dpi/cookies.c index 8a4657c5..6cf3b4fc 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -15,7 +15,7 @@ /* Handling of cookies takes place here. * This implementation aims to follow RFC 2965: - * http://www.cis.ohio-state.edu/cs/Services/rfc/rfc-text/rfc2965.txt + * http://www.ietf.org/rfc/rfc2965.txt */ /* @@ -137,7 +137,7 @@ static bool_t disabled; static FILE *file_stream; static char *cookies_txt_header_str = "# HTTP Cookie File\n" -"# http://www.netscape.com/newsref/std/cookie_spec.html\n" +"# http://wp.netscape.com/newsref/std/cookie_spec.html\n" "# This is a generated file! Do not edit.\n\n"; diff --git a/src/cookies.c b/src/cookies.c index 20b166fd..2f1aa500 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -12,7 +12,7 @@ /* Handling of cookies takes place here. * This implementation aims to follow RFC 2965: - * http://www.cis.ohio-state.edu/cs/Services/rfc/rfc-text/rfc2965.txt + * http://www.ietf.org/rfc/rfc2965.txt */ #define DEBUG_LEVEL 10 diff --git a/src/html.cc b/src/html.cc index 2f1c373e..04362159 100644 --- a/src/html.cc +++ b/src/html.cc @@ -3710,7 +3710,7 @@ static void Html_tag_close_form(DilloHtml *html, int TagIdx) * can be easily abused! * * More info at: - * http://lists.w3.org/Archives/Public/www-html/2000Feb/thread.html#232 + * http://lists.w3.org/Archives/Public/www-html/2000Feb/thread.html#msg232 * * todo: Note that we're sending custom HTML while still IN_HEAD. This * is a hackish way to put the message. A much cleaner approach is to |