summaryrefslogtreecommitdiff
path: root/libc/pwd_grp
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-03-24 13:00:29 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-03-24 13:00:29 +0000
commitb19fae0019e9914d2be8b87888a1d2a8c6311e80 (patch)
treea97f9a26eee3e8a464ce7d110c4fb59fe77fa2c0 /libc/pwd_grp
parentc29df5ad24a5b9ba5d78d837d6d3a16b6be40f1f (diff)
s/staticly/statically/, thx Bernhard Fischer
Diffstat (limited to 'libc/pwd_grp')
-rw-r--r--libc/pwd_grp/pwd_grp.c6
-rw-r--r--libc/pwd_grp/pwd_grp_internal.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/libc/pwd_grp/pwd_grp.c b/libc/pwd_grp/pwd_grp.c
index 551ded762..961899af9 100644
--- a/libc/pwd_grp/pwd_grp.c
+++ b/libc/pwd_grp/pwd_grp.c
@@ -13,7 +13,7 @@
* lenient. See the various glibc difference comments below.
*
* TODO:
- * Move to dynamic allocation of (currently staticly allocated)
+ * Move to dynamic allocation of (currently statically allocated)
* buffers; especially for the group-related functions since
* large group member lists will cause error returns.
*
@@ -57,7 +57,7 @@ libc_hidden_proto(__ctype_b)
#endif
/**********************************************************************/
-/* Sizes for staticly allocated buffers. */
+/* Sizes for statically allocated buffers. */
/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
* _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */
@@ -157,7 +157,7 @@ libc_hidden_def(fgetspent_r)
#endif
/**********************************************************************/
/* For the various fget??ent funcs, return NULL on failure and a
- * pointer to the appropriate struct (staticly allocated) on success.
+ * pointer to the appropriate struct (statically allocated) on success.
*/
/**********************************************************************/
#ifdef L_fgetpwent
diff --git a/libc/pwd_grp/pwd_grp_internal.c b/libc/pwd_grp/pwd_grp_internal.c
index 712b788ad..cb0ae76cf 100644
--- a/libc/pwd_grp/pwd_grp_internal.c
+++ b/libc/pwd_grp/pwd_grp_internal.c
@@ -13,7 +13,7 @@
* lenient. See the various glibc difference comments below.
*
* TODO:
- * Move to dynamic allocation of (currently staticly allocated)
+ * Move to dynamic allocation of (currently statically allocated)
* buffers; especially for the group-related functions since
* large group member lists will cause error returns.
*
@@ -39,7 +39,7 @@
#endif
/**********************************************************************/
-/* Sizes for staticly allocated buffers. */
+/* Sizes for statically allocated buffers. */
/* If you change these values, also change _SC_GETPW_R_SIZE_MAX and
* _SC_GETGR_R_SIZE_MAX in libc/unistd/sysconf.c to match */