]> sjero.net Git - wget/commitdiff
Fix copyright year and some GNU coding style
authorSaint Xavier <wget@sxav.eu>
Tue, 1 Jul 2008 17:28:24 +0000 (19:28 +0200)
committerSaint Xavier <wget@sxav.eu>
Tue, 1 Jul 2008 17:28:24 +0000 (19:28 +0200)
src/iri.c
src/iri.h

index 5fb06d0992bde05c5dda9768e68e2b9b8d5ad454..1792ab6224fbd409ed9fcfce97778e10d60a8043 100644 (file)
--- 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;
 }
index 4488501da40a57e6c8932b8c2b4115bd01e47727..6485847676e1a33b8dc5e78e01f2f70fa58fc018 100644 (file)
--- 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.