summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-03-01 09:48:13 +1100
committerDamien Miller <djm@mindrot.org>2001-03-01 09:48:13 +1100
commitb5b62185371a8a2b1108dc87305f9c168fcaec39 (patch)
tree9f9298402d93907d7d6bb8747f5d5d171440ac7b /auth.c
parent882c2eed97630695c5e1acd2fd237cb5fa01fe26 (diff)
- (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
<vinschen@redhat.com>
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/auth.c b/auth.c
index a0a3fb6de..61984a076 100644
--- a/auth.c
+++ b/auth.c
@@ -182,6 +182,9 @@ pwcopy(struct passwd *pw)
182#ifdef HAVE_PW_CLASS_IN_PASSWD 182#ifdef HAVE_PW_CLASS_IN_PASSWD
183 copy->pw_class = xstrdup(pw->pw_class); 183 copy->pw_class = xstrdup(pw->pw_class);
184#endif 184#endif
185#ifdef HAVE_CYGWIN
186 copy->pw_gecos = xstrdup(pw->pw_gecos);
187#endif
185 copy->pw_dir = xstrdup(pw->pw_dir); 188 copy->pw_dir = xstrdup(pw->pw_dir);
186 copy->pw_shell = xstrdup(pw->pw_shell); 189 copy->pw_shell = xstrdup(pw->pw_shell);
187 return copy; 190 return copy;