summaryrefslogtreecommitdiff
path: root/src/md5sum.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 15:08:30 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commita517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4 (patch)
tree20ad6e7d6aa0baed16f884fca2bccff4dda4983d /src/md5sum.c
parent9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (diff)
downloadcoreutils-a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4.tar.xz
maint: src/*.c: change remaining quotes (without embedded spaces)
Run this (twice): git grep -E -l '`[^ ]+'\' src/*.c \ |xargs perl -pi -e 's/`([^ ]+'\'')/'\''$1/'
Diffstat (limited to 'src/md5sum.c')
-rw-r--r--src/md5sum.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/md5sum.c b/src/md5sum.c
index 6f9c2c58d..6ddc7219f 100644
--- a/src/md5sum.c
+++ b/src/md5sum.c
@@ -40,7 +40,7 @@
#include "stdio--.h"
#include "xfreopen.h"
-/* The official name of this program (e.g., no `g' prefix). */
+/* The official name of this program (e.g., no 'g' prefix). */
#if HASH_ALGO_MD5
# define PROGRAM_NAME "md5sum"
# define DIGEST_TYPE_STRING "MD5"
@@ -334,8 +334,8 @@ split_3 (char *s, size_t s_len,
if (escaped_filename)
{
- /* Translate each `\n' string in the file name to a NEWLINE,
- and each `\\' string to a backslash. */
+ /* Translate each '\n' string in the file name to a NEWLINE,
+ and each '\\' string to a backslash. */
char *dst = &s[i];
@@ -359,7 +359,7 @@ split_3 (char *s, size_t s_len,
*dst++ = '\\';
break;
default:
- /* Only `\' or `n' may follow a backslash. */
+ /* Only '\' or 'n' may follow a backslash. */
return false;
}
break;