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

Fix copyright year and some GNU coding style

This commit is contained in:
Saint Xavier 2008-07-01 19:28:24 +02:00
parent 26252ac4ca
commit d687972c50
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,5 @@
/* IRI related functions. /* IRI related functions.
Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, Copyright (C) 2008 Free Software Foundation, Inc.
2008 Free Software Foundation, Inc.
This file is part of GNU Wget. This file is part of GNU Wget.
@ -102,9 +101,9 @@ check_encoding_name (char *encoding)
while (*s) while (*s)
{ {
if (!c_isascii(*s) || c_isspace(*s)) if (!c_isascii (*s) || c_isspace (*s))
{ {
logprintf (LOG_VERBOSE, "Encoding %s isn't valid\n", quote(encoding)); logprintf (LOG_VERBOSE, "Encoding %s isn't valid\n", quote (encoding));
return false; return false;
} }
@ -136,7 +135,7 @@ open_locale_to_utf8 (void)
return true; return true;
logprintf (LOG_VERBOSE, "Conversion from %s to %s isn't supported\n", logprintf (LOG_VERBOSE, "Conversion from %s to %s isn't supported\n",
quote (opt.locale), quote("UTF-8")); quote (opt.locale), quote ("UTF-8"));
locale2utf8 = NULL; locale2utf8 = NULL;
return false; return false;
} }

View File

@ -1,5 +1,5 @@
/* Internationalization related declarations. /* Internationalization related declarations.
Copyright (C) 2000, 2007, 2008 Free Software Foundation, Inc. Copyright (C) 2008 Free Software Foundation, Inc.
This file is part of GNU Wget. This file is part of GNU Wget.