summaryrefslogtreecommitdiffstats
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
parent882c2eed97630695c5e1acd2fd237cb5fa01fe26 (diff)
- (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
<vinschen@redhat.com>
-rw-r--r--ChangeLog4
-rw-r--r--auth.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fad78610..1499f588 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
- (djm) Force standard PAM conversation function in a few more places.
Patch from Redhat 2.5.1p1-2 RPM, probably Nalin Dahyabhai
<nalin@redhat.com>
+ - (djm) Cygwin needs pw->pw_gecos copied too. Patch from Corinna Vinschen
+ <vinschen@redhat.com>
20010228
- (djm) Detect endianness in configure and use it in rijndael.c. Fixes
@@ -4172,4 +4174,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.843 2001/02/28 22:18:57 djm Exp $
+$Id: ChangeLog,v 1.844 2001/02/28 22:48:13 djm Exp $
diff --git a/auth.c b/auth.c
index a0a3fb6d..61984a07 100644
--- a/auth.c
+++ b/auth.c
@@ -182,6 +182,9 @@ pwcopy(struct passwd *pw)
#ifdef HAVE_PW_CLASS_IN_PASSWD
copy->pw_class = xstrdup(pw->pw_class);
#endif
+#ifdef HAVE_CYGWIN
+ copy->pw_gecos = xstrdup(pw->pw_gecos);
+#endif
copy->pw_dir = xstrdup(pw->pw_dir);
copy->pw_shell = xstrdup(pw->pw_shell);
return copy;