aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-03 19:02:50 +0000
committerRob Landley <rob@landley.net>2006-03-03 19:02:50 +0000
commit06ec8cff83bf7c71b66027b28f7873f7e3b95eba (patch)
treeddca7ac5e8adcb0241f97df9504b182cd0971759
parentcbd1c857440347df90810fe93569db959096b9c5 (diff)
downloadbusybox-w32-06ec8cff83bf7c71b66027b28f7873f7e3b95eba.tar.gz
busybox-w32-06ec8cff83bf7c71b66027b28f7873f7e3b95eba.tar.bz2
busybox-w32-06ec8cff83bf7c71b66027b28f7873f7e3b95eba.zip
Typo fixes brought to you by the letters a, l, and Robert P. Day.
-rw-r--r--libpwdgrp/pwd_grp.c6
-rw-r--r--libpwdgrp/pwd_grp_internal.c4
-rw-r--r--shell/Config.in2
3 files changed, 6 insertions, 6 deletions
diff --git a/libpwdgrp/pwd_grp.c b/libpwdgrp/pwd_grp.c
index faf53d7e1..f45c6317e 100644
--- a/libpwdgrp/pwd_grp.c
+++ b/libpwdgrp/pwd_grp.c
@@ -11,7 +11,7 @@
11 * lenient. See the various glibc difference comments below. 11 * lenient. See the various glibc difference comments below.
12 * 12 *
13 * TODO: 13 * TODO:
14 * Move to dynamic allocation of (currently staticly allocated) 14 * Move to dynamic allocation of (currently statically allocated)
15 * buffers; especially for the group-related functions since 15 * buffers; especially for the group-related functions since
16 * large group member lists will cause error returns. 16 * large group member lists will cause error returns.
17 * 17 *
@@ -42,7 +42,7 @@
42#endif 42#endif
43 43
44/**********************************************************************/ 44/**********************************************************************/
45/* Sizes for staticly allocated buffers. */ 45/* Sizes for statically allocated buffers. */
46 46
47/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and 47/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
48 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */ 48 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */
@@ -133,7 +133,7 @@ int fgetspent_r(FILE *__restrict stream, struct spwd *__restrict resultbuf,
133#endif 133#endif
134/**********************************************************************/ 134/**********************************************************************/
135/* For the various fget??ent funcs, return NULL on failure and a 135/* For the various fget??ent funcs, return NULL on failure and a
136 * pointer to the appropriate struct (staticly allocated) on success. 136 * pointer to the appropriate struct (statically allocated) on success.
137 */ 137 */
138/**********************************************************************/ 138/**********************************************************************/
139#ifdef L_fgetpwent 139#ifdef L_fgetpwent
diff --git a/libpwdgrp/pwd_grp_internal.c b/libpwdgrp/pwd_grp_internal.c
index d935b8622..d2915c9ee 100644
--- a/libpwdgrp/pwd_grp_internal.c
+++ b/libpwdgrp/pwd_grp_internal.c
@@ -11,7 +11,7 @@
11 * lenient. See the various glibc difference comments below. 11 * lenient. See the various glibc difference comments below.
12 * 12 *
13 * TODO: 13 * TODO:
14 * Move to dynamic allocation of (currently staticly allocated) 14 * Move to dynamic allocation of (currently statically allocated)
15 * buffers; especially for the group-related functions since 15 * buffers; especially for the group-related functions since
16 * large group member lists will cause error returns. 16 * large group member lists will cause error returns.
17 * 17 *
@@ -42,7 +42,7 @@
42#endif 42#endif
43 43
44/**********************************************************************/ 44/**********************************************************************/
45/* Sizes for staticly allocated buffers. */ 45/* Sizes for statically allocated buffers. */
46 46
47/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and 47/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
48 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */ 48 * _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */
diff --git a/shell/Config.in b/shell/Config.in
index 5ee5ebb89..fd73b156e 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -226,7 +226,7 @@ config CONFIG_FEATURE_SH_STANDALONE_SHELL
226 busybox to use the ifconfig busybox applet. Specifying the fully 226 busybox to use the ifconfig busybox applet. Specifying the fully
227 qualified executable name, such as '/sbin/ifconfig' will still 227 qualified executable name, such as '/sbin/ifconfig' will still
228 execute the /sbin/ifconfig executable on the filesystem. This option 228 execute the /sbin/ifconfig executable on the filesystem. This option
229 is generally used when creating a staticly linked version of busybox 229 is generally used when creating a statically linked version of busybox
230 for use as a rescue shell, in the event that you screw up your system. 230 for use as a rescue shell, in the event that you screw up your system.
231 231
232 Note that when using this option, the shell will attempt to directly 232 Note that when using this option, the shell will attempt to directly