From: Saint Xavier Date: Tue, 1 Jul 2008 17:28:24 +0000 (+0200) Subject: Fix copyright year and some GNU coding style X-Git-Tag: v1.13~338^2~7^2~6^2~13^2~16 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=d687972c5052db9500f6d2cd689eee2c6f4c39ab Fix copyright year and some GNU coding style --- diff --git a/src/iri.c b/src/iri.c index 5fb06d09..1792ab62 100644 --- a/src/iri.c +++ b/src/iri.c @@ -1,6 +1,5 @@ /* IRI related functions. - Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, - 2008 Free Software Foundation, Inc. + Copyright (C) 2008 Free Software Foundation, Inc. This file is part of GNU Wget. @@ -102,9 +101,9 @@ check_encoding_name (char *encoding) 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; } @@ -136,7 +135,7 @@ open_locale_to_utf8 (void) return true; 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; return false; } diff --git a/src/iri.h b/src/iri.h index 4488501d..64858476 100644 --- a/src/iri.h +++ b/src/iri.h @@ -1,5 +1,5 @@ /* 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.