aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2006-03-23 21:31:42 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2006-03-23 21:31:42 +0000
commit998ab76154860b884205100f39b53510d2a30caa (patch)
tree01c2ec930878b0e9d8b2b8c171251d806219f2a1 /crypto
parentadd47b9589aac081cce4ea8e8973db4e173800d3 (diff)
downloadsrc-998ab76154860b884205100f39b53510d2a30caa.tar.gz
src-998ab76154860b884205100f39b53510d2a30caa.zip
Fix utmp. There is some clever logic in configure.ac which attempts to
determine whether struct utmp contains the ut_host and ut_time fields. Unfortunately, it reports a false negative for both on FreeBSD, and I didn't check the resulting config.h closely enough to catch the error. Noticed by: ache
Notes
Notes: svn path=/head/; revision=157055
Diffstat (limited to 'crypto')
-rw-r--r--crypto/openssh/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/config.h b/crypto/openssh/config.h
index 4b0f29e0c8e6..fc1a45a0b751 100644
--- a/crypto/openssh/config.h
+++ b/crypto/openssh/config.h
@@ -392,7 +392,7 @@
#define HAVE_HEADER_AD 1
/* Define if you have ut_host in utmp.h */
-/* #undef HAVE_HOST_IN_UTMP */
+#define HAVE_HOST_IN_UTMP 1
/* Define if you have ut_host in utmpx.h */
/* #undef HAVE_HOST_IN_UTMPX */
@@ -897,7 +897,7 @@
#define HAVE_TIME_H 1
/* Define if you have ut_time in utmp.h */
-/* #undef HAVE_TIME_IN_UTMP */
+#define HAVE_TIME_IN_UTMP 1
/* Define if you have ut_time in utmpx.h */
/* #undef HAVE_TIME_IN_UTMPX */