1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Constify check_end().

This commit is contained in:
hniksic 2000-11-20 02:25:28 -08:00
parent 7302e69dc2
commit fb42069e51
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-11-20 Hrvoje Niksic <hniksic@arsdigita.com>
* http.c (check_end): Constify.
2000-11-20 Hrvoje Niksic <hniksic@arsdigita.com> 2000-11-20 Hrvoje Niksic <hniksic@arsdigita.com>
* http.c (http_loop): If username and password are known, try the * http.c (http_loop): If username and password are known, try the

View File

@ -1615,7 +1615,7 @@ mktime_from_utc (struct tm *t)
"^ *(GMT|[+-][0-9]|$)", 0 otherwise. P being NULL (a valid result of "^ *(GMT|[+-][0-9]|$)", 0 otherwise. P being NULL (a valid result of
strptime()) is considered a failure and 0 is returned. */ strptime()) is considered a failure and 0 is returned. */
static int static int
check_end (char *p) check_end (const char *p)
{ {
if (!p) if (!p)
return 0; return 0;