(md5_file): Replace obsolete comment with a description
authorJim Meyering <jim@meyering.net>
Thu, 4 Jul 1996 14:53:25 +0000 (14:53 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 4 Jul 1996 14:53:25 +0000 (14:53 +0000)
of the function.
(md5_check): Don't use "s"-adding trick to form the plural of
`checksum.'  That doesn't work well with translation.
Suggestions from Ulrich Drepper.

src/md5sum.c

index b1e87df..7cabcd3 100644 (file)
@@ -230,7 +230,9 @@ hex_digits (const char *s)
   return 1;
 }
 
-/* FIXME: allow newline in filename by encoding it. */
+/* An interface to md5_stream.  Operate on FILENAME (it may be "-") and
+   put the result in *MD5_RESULT.  Return non-zero upon failure, zero
+   to indicate success.  */
 
 static int
 md5_file (const char *filename, int binary, unsigned char *md5_result)
@@ -425,9 +427,10 @@ md5_check (const char *checkfile_name, int binary)
          if (n_mismatched_checksums > 0)
            {
              error (0, 0,
-                  _("WARNING: %d of %d computed checksum%s did NOT match"),
+                  _("WARNING: %d of %d computed %s did NOT match"),
                     n_mismatched_checksums, n_computed_checkums,
-                    (n_computed_checkums == 1 ? "" : "s"));
+                    (n_computed_checkums == 1
+                     ? _("checksum") : _("checksums")));
            }
        }
     }