Forráskód Böngészése

Fix a typo in an error message (unexecpted -> unexpected).

Nicolas FRANCOIS 20 éve
szülő
commit
1cd0acf066
3 módosított fájl, 6 hozzáadás és 1 törlés
  1. 4 0
      ChangeLog
  2. 1 0
      debian/changelog
  3. 1 1
      src/filesdb.c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+2006-04-29  Justin Pryzby <justinpryzby@users.sourceforge.net>
+
+	* src/filesdb.c: Fix a typo (unexecpted -> unexpected).
+
 2006-04-22  Clint Adams  <schizo@debian.org>
 
 	* scripts/install-info.pl: Strip any trailing '/dir' from the

+ 1 - 0
debian/changelog

@@ -26,6 +26,7 @@ dpkg (1.13.19~) UNRELEASED; urgency=low
   [ Nicolas Francois ]
   * Generate the Russian man pages in the KOI8-R charset. Closes: #361987
   * Document the shlibs.local format in dpkg-source(1). CLoses: #316485
+  * Fix a typo in an error message. Thanks to Justin Pryzby. Closes: #364539
 
   [ Guillem Jover ]
   * Fix strings so that they can be more easily translated. Closes: #134358

+ 1 - 1
src/filesdb.c

@@ -400,7 +400,7 @@ void ensure_statoverrides(void) {
     /* Move to the next bit */
     thisline=ptr+1;
     if (thisline>=loaded_list_end)
-      ohshit("unexecpted end of line in statoverride file");
+      ohshit("unexpected end of line in statoverride file");
 
     /* Extract the mode */
     if (!(ptr=memchr(thisline, ' ', nextline-thisline)))