]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix spelling.
authorEric Blake <ebb9@byu.net>
Sat, 12 Dec 2009 14:38:34 +0000 (15:38 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 12 Dec 2009 14:41:34 +0000 (15:41 +0100)
gettext-runtime/intl/ChangeLog
gettext-runtime/intl/relocatable.c

index 6dd1b7f847389652d370fd2e48bfd38a1fafdf1a..3efacdbbeb196ba5d980b375048ef422eb66647a 100644 (file)
@@ -1,3 +1,7 @@
+2009-10-10  Eric Blake  <ebb9@byu.net>
+
+       * relocatable.c (compute_curr_prefix): Fix spelling.
+
 2009-10-18  Bruno Haible  <bruno@clisp.org>
 
        Avoid symlink attack in localcharset module.
index 09ff8c9efaa45d2df9b096837c8cf1fceb17a19f..b4944200381337ee15b91f1a19f346b03a0f51d7 100644 (file)
@@ -1,5 +1,5 @@
 /* Provide relocatable packages.
-   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
+   Copyright (C) 2003-2006, 2008-2009 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2003.
 
    This program is free software; you can redistribute it and/or modify it
@@ -233,11 +233,11 @@ compute_curr_prefix (const char *orig_installprefix,
                  same = true;
                break;
              }
-           /* Do case-insensitive comparison if the filesystem is always or
+           /* Do case-insensitive comparison if the file system is always or
               often case-insensitive.  It's better to accept the comparison
               if the difference is only in case, rather than to fail.  */
 #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
-           /* Win32, Cygwin, OS/2, DOS - case insignificant filesystem */
+           /* Win32, Cygwin, OS/2, DOS - case insignificant file system */
            if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi)
                != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi))
              break;
@@ -450,7 +450,7 @@ relocate (const char *pathname)
 #endif
 
   /* Note: It is not necessary to perform case insensitive comparison here,
-     even for DOS-like filesystems, because the pathname argument was
+     even for DOS-like file systems, because the pathname argument was
      typically created from the same Makefile variable as orig_prefix came
      from.  */
   if (orig_prefix != NULL && curr_prefix != NULL