diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-02 14:26:33 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-02 14:26:33 +0200 |
commit | 95f7953f2c46c7b9c799250aa8dc6eb10cc5c726 (patch) | |
tree | a59020f297e319343585b41e5afae9630dc8223d /coreutils | |
parent | 18e781dc02cfc293d33b02f924ef70513c2f205a (diff) | |
download | busybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.tar.gz busybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.tar.bz2 busybox-w32-95f7953f2c46c7b9c799250aa8dc6eb10cc5c726.zip |
do not use `a' quoting style in comments
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/date.c | 2 | ||||
-rw-r--r-- | coreutils/echo.c | 2 | ||||
-rw-r--r-- | coreutils/env.c | 2 | ||||
-rw-r--r-- | coreutils/nohup.c | 4 | ||||
-rw-r--r-- | coreutils/od.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index 0fb9f1f00..2c6e1d4df 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -66,7 +66,7 @@ | |||
66 | * date [OPTION]... [+FORMAT] | 66 | * date [OPTION]... [+FORMAT] |
67 | * date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]] | 67 | * date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]] |
68 | * -d, --date=STRING | 68 | * -d, --date=STRING |
69 | * display time described by STRING, not `now' | 69 | * display time described by STRING, not 'now' |
70 | * -f, --file=DATEFILE | 70 | * -f, --file=DATEFILE |
71 | * like --date once for each line of DATEFILE | 71 | * like --date once for each line of DATEFILE |
72 | * -r, --reference=FILE | 72 | * -r, --reference=FILE |
diff --git a/coreutils/echo.c b/coreutils/echo.c index af33319a1..e45b90940 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c | |||
@@ -218,7 +218,7 @@ int echo_main(int argc UNUSED_PARAM, char **argv) | |||
218 | * may be used to endorse or promote products derived from this software | 218 | * may be used to endorse or promote products derived from this software |
219 | * without specific prior written permission. | 219 | * without specific prior written permission. |
220 | * | 220 | * |
221 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 221 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
222 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 222 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
223 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 223 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
224 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 224 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/coreutils/env.c b/coreutils/env.c index 8def9c2da..3242446f5 100644 --- a/coreutils/env.c +++ b/coreutils/env.c | |||
@@ -129,7 +129,7 @@ int env_main(int argc UNUSED_PARAM, char **argv) | |||
129 | * may be used to endorse or promote products derived from this software | 129 | * may be used to endorse or promote products derived from this software |
130 | * without specific prior written permission. | 130 | * without specific prior written permission. |
131 | * | 131 | * |
132 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 132 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
133 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 133 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
134 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 134 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
135 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 135 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index 8e28f9029..df271c738 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c | |||
@@ -31,12 +31,12 @@ | |||
31 | 31 | ||
32 | /* Compat info: nohup (GNU coreutils 6.8) does this: | 32 | /* Compat info: nohup (GNU coreutils 6.8) does this: |
33 | # nohup true | 33 | # nohup true |
34 | nohup: ignoring input and appending output to `nohup.out' | 34 | nohup: ignoring input and appending output to 'nohup.out' |
35 | # nohup true 1>/dev/null | 35 | # nohup true 1>/dev/null |
36 | nohup: ignoring input and redirecting stderr to stdout | 36 | nohup: ignoring input and redirecting stderr to stdout |
37 | # nohup true 2>zz | 37 | # nohup true 2>zz |
38 | # cat zz | 38 | # cat zz |
39 | nohup: ignoring input and appending output to `nohup.out' | 39 | nohup: ignoring input and appending output to 'nohup.out' |
40 | # nohup true 2>zz 1>/dev/null | 40 | # nohup true 2>zz 1>/dev/null |
41 | # cat zz | 41 | # cat zz |
42 | nohup: ignoring input | 42 | nohup: ignoring input |
diff --git a/coreutils/od.c b/coreutils/od.c index e3a68435b..9a888dd5f 100644 --- a/coreutils/od.c +++ b/coreutils/od.c | |||
@@ -223,7 +223,7 @@ int od_main(int argc, char **argv) | |||
223 | * may be used to endorse or promote products derived from this software | 223 | * may be used to endorse or promote products derived from this software |
224 | * without specific prior written permission. | 224 | * without specific prior written permission. |
225 | * | 225 | * |
226 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 226 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
227 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 227 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
228 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 228 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
229 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 229 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |