* passwd.cc (getpwuid_r32): Revert previous change.

This commit is contained in:
Christopher Faylor
2003-01-02 00:03:23 +00:00
parent 8619b42be7
commit 2665fb1594
2 changed files with 5 additions and 2 deletions

View File

@@ -266,8 +266,7 @@ getpwuid_r32 (__uid32_t uid, struct passwd *pwd, char *buffer, size_t bufsize, s
/* check needed buffer size. */
size_t needsize = strlen (temppw->pw_name) + strlen (temppw->pw_dir) +
strlen (temppw->pw_shell) + strlen (temppw->pw_gecos) +
strlen (temppw->pw_passwd) + 5 +
sizeof (temppw->pw_uid) + sizeof (temppw->pw_gid);
strlen (temppw->pw_passwd) + 5;
if (needsize > bufsize)
return ERANGE;