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 | |
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>
35 files changed, 42 insertions, 42 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 |
diff --git a/e2fsprogs/e2fs_lib.h b/e2fsprogs/e2fs_lib.h index f2ae56f43..ae28c353b 100644 --- a/e2fsprogs/e2fs_lib.h +++ b/e2fsprogs/e2fs_lib.h | |||
@@ -26,7 +26,7 @@ int fgetsetflags(const char *name, unsigned long *get_flags, unsigned long set_f | |||
26 | #define fgetflags(name, flags) fgetsetflags(name, flags, 0) | 26 | #define fgetflags(name, flags) fgetsetflags(name, flags, 0) |
27 | #define fsetflags(name, flags) fgetsetflags(name, NULL, flags) | 27 | #define fsetflags(name, flags) fgetsetflags(name, NULL, flags) |
28 | 28 | ||
29 | /* Must be 1 for compatibility with `int long_format'. */ | 29 | /* Must be 1 for compatibility with 'int long_format'. */ |
30 | #define PFOPT_LONG 1 | 30 | #define PFOPT_LONG 1 |
31 | /* Print file attributes on an ext2 file system */ | 31 | /* Print file attributes on an ext2 file system */ |
32 | void print_e2flags(FILE *f, unsigned long flags, unsigned options); | 32 | void print_e2flags(FILE *f, unsigned long flags, unsigned options); |
diff --git a/editors/awk.c b/editors/awk.c index cc17ad438..372a255bd 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -230,7 +230,7 @@ typedef struct tsplitter_s { | |||
230 | */ | 230 | */ |
231 | #define TC_LENGTH (1 << 20) | 231 | #define TC_LENGTH (1 << 20) |
232 | #define TC_GETLINE (1 << 21) | 232 | #define TC_GETLINE (1 << 21) |
233 | #define TC_FUNCDECL (1 << 22) /* `function' `func' */ | 233 | #define TC_FUNCDECL (1 << 22) /* 'function' 'func' */ |
234 | #define TC_BEGIN (1 << 23) | 234 | #define TC_BEGIN (1 << 23) |
235 | #define TC_END (1 << 24) | 235 | #define TC_END (1 << 24) |
236 | #define TC_EOF (1 << 25) | 236 | #define TC_EOF (1 << 25) |
diff --git a/findutils/find.c b/findutils/find.c index 69baf065d..5857a3f44 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * # find file.txt -exec 'echo {}' '{} {}' ';' | 15 | * # find file.txt -exec 'echo {}' '{} {}' ';' |
16 | * find: echo file.txt: No such file or directory | 16 | * find: echo file.txt: No such file or directory |
17 | * # find file.txt -exec 'echo' '{} {}' '; ' | 17 | * # find file.txt -exec 'echo' '{} {}' '; ' |
18 | * find: missing argument to `-exec' | 18 | * find: missing argument to '-exec' |
19 | * # find file.txt -exec 'echo {}' '{} {}' ';' junk | 19 | * # find file.txt -exec 'echo {}' '{} {}' ';' junk |
20 | * find: paths must precede expression | 20 | * find: paths must precede expression |
21 | * # find file.txt -exec 'echo {}' '{} {}' ';' junk ';' | 21 | * # find file.txt -exec 'echo {}' '{} {}' ';' junk ';' |
diff --git a/libbb/change_identity.c b/libbb/change_identity.c index d48d86326..431f72c8c 100644 --- a/libbb/change_identity.c +++ b/libbb/change_identity.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
16 | * without specific prior written permission. | 16 | * without specific prior written permission. |
17 | * | 17 | * |
18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND | 18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND |
19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE | 21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/correct_password.c b/libbb/correct_password.c index f4635a5bc..51928f68d 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
16 | * without specific prior written permission. | 16 | * without specific prior written permission. |
17 | * | 17 | * |
18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND | 18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND |
19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE | 21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/dump.c b/libbb/dump.c index 211a1ed9e..e23b71294 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -828,7 +828,7 @@ void FAST_FUNC bb_dump_add(dumper_t* pub_dumper, const char *fmt) | |||
828 | * may be used to endorse or promote products derived from this software | 828 | * may be used to endorse or promote products derived from this software |
829 | * without specific prior written permission. | 829 | * without specific prior written permission. |
830 | * | 830 | * |
831 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 831 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
832 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 832 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
833 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 833 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
834 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 834 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/progress.c b/libbb/progress.c index 3c2f01667..64e6529ac 100644 --- a/libbb/progress.c +++ b/libbb/progress.c | |||
@@ -25,7 +25,7 @@ | |||
25 | * may be used to endorse or promote products derived from this software | 25 | * may be used to endorse or promote products derived from this software |
26 | * without specific prior written permission. | 26 | * without specific prior written permission. |
27 | * | 27 | * |
28 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 28 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
29 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 29 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
30 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 30 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
31 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 31 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/pw_encrypt_des.c b/libbb/pw_encrypt_des.c index c8e02ddff..19a9ab15b 100644 --- a/libbb/pw_encrypt_des.c +++ b/libbb/pw_encrypt_des.c | |||
@@ -24,7 +24,7 @@ | |||
24 | * may be used to endorse or promote products derived from this software | 24 | * may be used to endorse or promote products derived from this software |
25 | * without specific prior written permission. | 25 | * without specific prior written permission. |
26 | * | 26 | * |
27 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | 27 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ''AS IS'' AND |
28 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 28 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
29 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 29 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
30 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 30 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/run_shell.c b/libbb/run_shell.c index b6b9360e8..3bb58bb6f 100644 --- a/libbb/run_shell.c +++ b/libbb/run_shell.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
16 | * without specific prior written permission. | 16 | * without specific prior written permission. |
17 | * | 17 | * |
18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND | 18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND |
19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE | 21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE |
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c index 4258656fe..91b6d94db 100644 --- a/libbb/setup_environment.c +++ b/libbb/setup_environment.c | |||
@@ -15,7 +15,7 @@ | |||
15 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
16 | * without specific prior written permission. | 16 | * without specific prior written permission. |
17 | * | 17 | * |
18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ``AS IS'' AND | 18 | * THIS SOFTWARE IS PROVIDED BY JULIE HAUGH AND CONTRIBUTORS ''AS IS'' AND |
19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 19 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE | 21 | * ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE |
diff --git a/libpwdgrp/uidgid_get.c b/libpwdgrp/uidgid_get.c index 1199f23f9..283ac78fc 100644 --- a/libpwdgrp/uidgid_get.c +++ b/libpwdgrp/uidgid_get.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/miscutils/adjtimex.c b/miscutils/adjtimex.c index 04ba5636f..0830734ee 100644 --- a/miscutils/adjtimex.c +++ b/miscutils/adjtimex.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * adjtimex.c - read, and possibly modify, the Linux kernel `timex' variables. | 3 | * adjtimex.c - read, and possibly modify, the Linux kernel 'timex' variables. |
4 | * | 4 | * |
5 | * Originally written: October 1997 | 5 | * Originally written: October 1997 |
6 | * Last hack: March 2001 | 6 | * Last hack: March 2001 |
diff --git a/miscutils/time.c b/miscutils/time.c index 60fc11f6e..0ecdac1a6 100644 --- a/miscutils/time.c +++ b/miscutils/time.c | |||
@@ -127,13 +127,13 @@ static unsigned long ptok(const unsigned pagesize, const unsigned long pages) | |||
127 | 127 | ||
128 | /* summarize: Report on the system use of a command. | 128 | /* summarize: Report on the system use of a command. |
129 | 129 | ||
130 | Print the FMT argument except that `%' sequences | 130 | Print the FMT argument except that '%' sequences |
131 | have special meaning, and `\n' and `\t' are translated into | 131 | have special meaning, and '\n' and '\t' are translated into |
132 | newline and tab, respectively, and `\\' is translated into `\'. | 132 | newline and tab, respectively, and '\\' is translated into '\'. |
133 | 133 | ||
134 | The character following a `%' can be: | 134 | The character following a '%' can be: |
135 | (* means the tcsh time builtin also recognizes it) | 135 | (* means the tcsh time builtin also recognizes it) |
136 | % == a literal `%' | 136 | % == a literal '%' |
137 | C == command name and arguments | 137 | C == command name and arguments |
138 | * D == average unshared data size in K (ru_idrss+ru_isrss) | 138 | * D == average unshared data size in K (ru_idrss+ru_isrss) |
139 | * E == elapsed real (wall clock) time in [hour:]min:sec | 139 | * E == elapsed real (wall clock) time in [hour:]min:sec |
diff --git a/modutils/modutils-24.c b/modutils/modutils-24.c index 9ce91351d..1a30dd87c 100644 --- a/modutils/modutils-24.c +++ b/modutils/modutils-24.c | |||
@@ -2269,8 +2269,8 @@ static int add_symbols_from(struct obj_file *f, | |||
2269 | 2269 | ||
2270 | #ifdef SYMBOL_PREFIX | 2270 | #ifdef SYMBOL_PREFIX |
2271 | /* Prepend SYMBOL_PREFIX to the symbol's name (the | 2271 | /* Prepend SYMBOL_PREFIX to the symbol's name (the |
2272 | kernel exports `C names', but module object files | 2272 | kernel exports 'C names', but module object files |
2273 | reference `linker names'). */ | 2273 | reference 'linker names'). */ |
2274 | size_t extra = sizeof SYMBOL_PREFIX; | 2274 | size_t extra = sizeof SYMBOL_PREFIX; |
2275 | size_t name_size = strlen(name) + extra; | 2275 | size_t name_size = strlen(name) + extra; |
2276 | if (name_size > name_alloced_size) { | 2276 | if (name_size > name_alloced_size) { |
diff --git a/networking/hostname.c b/networking/hostname.c index 4b305d2b6..7d7c60d18 100644 --- a/networking/hostname.c +++ b/networking/hostname.c | |||
@@ -114,7 +114,7 @@ static void do_sethostname(char *s, int isfile) | |||
114 | * { bbox: not supported } | 114 | * { bbox: not supported } |
115 | * -F, --file filename | 115 | * -F, --file filename |
116 | * Read the host name from the specified file. Comments (lines | 116 | * Read the host name from the specified file. Comments (lines |
117 | * starting with a `#') are ignored. | 117 | * starting with a '#') are ignored. |
118 | */ | 118 | */ |
119 | int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 119 | int hostname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
120 | int hostname_main(int argc UNUSED_PARAM, char **argv) | 120 | int hostname_main(int argc UNUSED_PARAM, char **argv) |
diff --git a/networking/ping.c b/networking/ping.c index 506e7b11b..2e8bef023 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -953,7 +953,7 @@ int ping6_main(int argc UNUSED_PARAM, char **argv) | |||
953 | * may be used to endorse or promote products derived from this software | 953 | * may be used to endorse or promote products derived from this software |
954 | * without specific prior written permission. | 954 | * without specific prior written permission. |
955 | * | 955 | * |
956 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 956 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
957 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 957 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
958 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 958 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
959 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 959 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/networking/traceroute.c b/networking/traceroute.c index a958a2c6c..d9c62f7f9 100644 --- a/networking/traceroute.c +++ b/networking/traceroute.c | |||
@@ -12,12 +12,12 @@ | |||
12 | * this paragraph in its entirety in the documentation or other materials | 12 | * this paragraph in its entirety in the documentation or other materials |
13 | * provided with the distribution, and (3) all advertising materials mentioning | 13 | * provided with the distribution, and (3) all advertising materials mentioning |
14 | * features or use of this software display the following acknowledgement: | 14 | * features or use of this software display the following acknowledgement: |
15 | * ``This product includes software developed by the University of California, | 15 | * ''This product includes software developed by the University of California, |
16 | * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of | 16 | * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of |
17 | * the University nor the names of its contributors may be used to endorse | 17 | * the University nor the names of its contributors may be used to endorse |
18 | * or promote products derived from this software without specific prior | 18 | * or promote products derived from this software without specific prior |
19 | * written permission. | 19 | * written permission. |
20 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED | 20 | * THIS SOFTWARE IS PROVIDED ''AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED |
21 | * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF | 21 | * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF |
22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
23 | */ | 23 | */ |
diff --git a/runit/chpst.c b/runit/chpst.c index 3a2f9e616..ccc96539d 100644 --- a/runit/chpst.c +++ b/runit/chpst.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/runit/runit_lib.h b/runit/runit_lib.h index c36ea4ca5..c54561616 100644 --- a/runit/runit_lib.h +++ b/runit/runit_lib.h | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/runit/runsv.c b/runit/runsv.c index ad7d82cb8..a67280b4b 100644 --- a/runit/runsv.c +++ b/runit/runsv.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index b4f5c303b..abba2e8e4 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/runit/sv.c b/runit/sv.c index 2d5b466bf..3dd02550a 100644 --- a/runit/sv.c +++ b/runit/sv.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/runit/svlogd.c b/runit/svlogd.c index 8dbf67106..831873d86 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c | |||
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |||
13 | 3. The name of the author may not be used to endorse or promote products | 13 | 3. The name of the author may not be used to endorse or promote products |
14 | derived from this software without specific prior written permission. | 14 | derived from this software without specific prior written permission. |
15 | 15 | ||
16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED |
17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
diff --git a/scripts/echo.c b/scripts/echo.c index cb207ae05..8c6b409d3 100644 --- a/scripts/echo.c +++ b/scripts/echo.c | |||
@@ -214,7 +214,7 @@ int main(int argc, char **argv) | |||
214 | * may be used to endorse or promote products derived from this software | 214 | * may be used to endorse or promote products derived from this software |
215 | * without specific prior written permission. | 215 | * without specific prior written permission. |
216 | * | 216 | * |
217 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 217 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
218 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 218 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
219 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 219 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
220 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 220 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/shell/ash.c b/shell/ash.c index 1deae7c2f..78baa9aac 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -13877,7 +13877,7 @@ int ash_main(int argc UNUSED_PARAM, char **argv) | |||
13877 | * may be used to endorse or promote products derived from this software | 13877 | * may be used to endorse or promote products derived from this software |
13878 | * without specific prior written permission. | 13878 | * without specific prior written permission. |
13879 | * | 13879 | * |
13880 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 13880 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
13881 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 13881 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
13882 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 13882 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
13883 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 13883 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/shell/ash_test/printenv.c b/shell/ash_test/printenv.c index c0c5e197c..c86308d3b 100644 --- a/shell/ash_test/printenv.c +++ b/shell/ash_test/printenv.c | |||
@@ -56,7 +56,7 @@ main (argc, argv) | |||
56 | if (**argv == **envp && strncmp (*envp, *argv, len) == 0) | 56 | if (**argv == **envp && strncmp (*envp, *argv, len) == 0) |
57 | { | 57 | { |
58 | eval = *envp + len; | 58 | eval = *envp + len; |
59 | /* If the environment variable doesn't have an `=', ignore it. */ | 59 | /* If the environment variable doesn't have an '=', ignore it. */ |
60 | if (*eval == '=') | 60 | if (*eval == '=') |
61 | { | 61 | { |
62 | puts (eval + 1); | 62 | puts (eval + 1); |
diff --git a/shell/math.c b/shell/math.c index 006221b6a..f01f24362 100644 --- a/shell/math.c +++ b/shell/math.c | |||
@@ -743,7 +743,7 @@ arith(arith_state_t *math_state, const char *expr) | |||
743 | * may be used to endorse or promote products derived from this software | 743 | * may be used to endorse or promote products derived from this software |
744 | * without specific prior written permission. | 744 | * without specific prior written permission. |
745 | * | 745 | * |
746 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 746 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
747 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 747 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
748 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 748 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
749 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 749 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 6769a8175..359ac3acf 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c | |||
@@ -167,7 +167,7 @@ int logger_main(int argc UNUSED_PARAM, char **argv) | |||
167 | * may be used to endorse or promote products derived from this software | 167 | * may be used to endorse or promote products derived from this software |
168 | * without specific prior written permission. | 168 | * without specific prior written permission. |
169 | * | 169 | * |
170 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 170 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
171 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 171 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
172 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 172 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
173 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 173 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/util-linux/cal.c b/util-linux/cal.c index 091fdbd2b..10df0ae8b 100644 --- a/util-linux/cal.c +++ b/util-linux/cal.c | |||
@@ -376,7 +376,7 @@ static char *build_row(char *p, unsigned *dp) | |||
376 | * may be used to endorse or promote products derived from this software | 376 | * may be used to endorse or promote products derived from this software |
377 | * without specific prior written permission. | 377 | * without specific prior written permission. |
378 | * | 378 | * |
379 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 379 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
380 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 380 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
381 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 381 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
382 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 382 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
diff --git a/util-linux/fdisk_osf.c b/util-linux/fdisk_osf.c index 89f1f323c..1141b7801 100644 --- a/util-linux/fdisk_osf.c +++ b/util-linux/fdisk_osf.c | |||
@@ -18,7 +18,7 @@ | |||
18 | * may be used to endorse or promote products derived from this software | 18 | * may be used to endorse or promote products derived from this software |
19 | * without specific prior written permission. | 19 | * without specific prior written permission. |
20 | * | 20 | * |
21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | 21 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND |
22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |