diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:51:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-14 17:51:38 +0000 |
commit | aff114c33d2b8879233fa513e6d760d0ef99b632 (patch) | |
tree | 101230a8bd16a03319acc4b9b5fb33c33fb58672 /libbb/printf.c | |
parent | 4c8b0dd97385b820e28bb8cb2d08ef3bd194a16a (diff) | |
download | busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.tar.gz busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.tar.bz2 busybox-w32-aff114c33d2b8879233fa513e6d760d0ef99b632.zip |
Larry Doolittle writes:
This is a bulk spelling fix patch against busybox-1.00-pre10.
If anyone gets a corrupted copy (and cares), let me know and
I will make alternate arrangements.
Erik - please apply.
Authors - please check that I didn't corrupt any meaning.
Package importers - see if any of these changes should be
passed to the upstream authors.
I glossed over lots of sloppy capitalizations, missing apostrophes,
mixed American/British spellings, and German-style compound words.
What is "pretect redefined for test" in cmdedit.c?
Good luck on the 1.00 release!
- Larry
Diffstat (limited to 'libbb/printf.c')
-rw-r--r-- | libbb/printf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbb/printf.c b/libbb/printf.c index 3c438b2c9..1156da911 100644 --- a/libbb/printf.c +++ b/libbb/printf.c | |||
@@ -28,7 +28,7 @@ | |||
28 | * reasons for failure which don't set the streams error indicator, | 28 | * reasons for failure which don't set the streams error indicator, |
29 | * SUSv3 lists EILSEQ, EINVAL, and ENOMEM. | 29 | * SUSv3 lists EILSEQ, EINVAL, and ENOMEM. |
30 | * | 30 | * |
31 | * In some cases, it would be desireable to have a group of *printf() | 31 | * In some cases, it would be desirable to have a group of *printf() |
32 | * functions available that _always_ set the stream error indicator on | 32 | * functions available that _always_ set the stream error indicator on |
33 | * failure. That would allow us to defer error checking until applet | 33 | * failure. That would allow us to defer error checking until applet |
34 | * exit. Unfortunately, there is no standard way of setting a streams | 34 | * exit. Unfortunately, there is no standard way of setting a streams |
@@ -38,7 +38,7 @@ | |||
38 | * free to send patches for stdio implementations where the following | 38 | * free to send patches for stdio implementations where the following |
39 | * fails. | 39 | * fails. |
40 | * | 40 | * |
41 | * NOTE: None of this is threadsafe. As busybox is a nonthreaded app, | 41 | * NOTE: None of this is thread safe. As busybox is a non-threaded app, |
42 | * that isn't currently an issue. | 42 | * that isn't currently an issue. |
43 | */ | 43 | */ |
44 | 44 | ||
@@ -109,7 +109,7 @@ | |||
109 | * | 109 | * |
110 | * Some example bugs as of March 12, 2003... | 110 | * Some example bugs as of March 12, 2003... |
111 | * 1) fputc() doesn't set the error indicator on failure. | 111 | * 1) fputc() doesn't set the error indicator on failure. |
112 | * 2) freopen() doesn't maintain the same stream object, contary to | 112 | * 2) freopen() doesn't maintain the same stream object, contrary to |
113 | * standards. This makes it useless in its primary role of | 113 | * standards. This makes it useless in its primary role of |
114 | * reassociating stdin/stdout/stderr. | 114 | * reassociating stdin/stdout/stderr. |
115 | * 3) printf() often fails to correctly format output when conversions | 115 | * 3) printf() often fails to correctly format output when conversions |
@@ -123,7 +123,7 @@ | |||
123 | #error dietlibc is currently not supported. Please see the commented source. | 123 | #error dietlibc is currently not supported. Please see the commented source. |
124 | 124 | ||
125 | #else /* some other lib */ | 125 | #else /* some other lib */ |
126 | /* Please see the comments for the above supported libaries for examples | 126 | /* Please see the comments for the above supported libraries for examples |
127 | * of what is required to support your stdio implementation. | 127 | * of what is required to support your stdio implementation. |
128 | */ | 128 | */ |
129 | #error Your stdio library is currently not supported. Please see the commented source. | 129 | #error Your stdio library is currently not supported. Please see the commented source. |