freebsd-ports/security/hpn-ssh/files/patch-misc.c
Dirk Meyer 5cbc48b2d7 New port:
OpenSSH portable, which has GNU-configure and more.
Diffs to OpenSSH-OPenBSD are huge.
So this is here a complete diffrent branch, no repro-copy
- Did a bit cleanup in the Makefile

Submitted by:	dwcjr@inethouston.net
2001-06-01 14:49:36 +00:00

13 lines
356 B
C

--- misc.c.orig Thu Apr 12 22:09:37 2001
+++ misc.c Sat May 26 15:39:25 2001
@@ -111,6 +111,10 @@
copy->pw_class = xstrdup(pw->pw_class);
copy->pw_dir = xstrdup(pw->pw_dir);
copy->pw_shell = xstrdup(pw->pw_shell);
+#ifdef __FreeBSD__
+ copy->pw_expire = pw->pw_expire;
+ copy->pw_change = pw->pw_change;
+#endif /* __FreeBSD__ */
return copy;
}