summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--regress/agent-getpeereid.sh4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2120e702d..a9c1d03ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -32,6 +32,8 @@
32 - (dtucker) [configure.ac openbsd-compat/bsd-getpeereid.c] Bug #1287: Use 32 - (dtucker) [configure.ac openbsd-compat/bsd-getpeereid.c] Bug #1287: Use
33 getpeerucred to implement getpeereid (currently only Solaris 10 and up). 33 getpeerucred to implement getpeereid (currently only Solaris 10 and up).
34 Patch by Jan.Pechanec at Sun. 34 Patch by Jan.Pechanec at Sun.
35 - (dtucker) [regress/agent-getpeereid.sh] Do peereid test if we have
36 HAVE_GETPEERUCRED too. Also from Jan Pechanec.
35 37
3620070313 3820070313
37 - (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include 39 - (dtucker) [entropy.c scard-opensc.c ssh-rand-helper.c] Bug #1294: include
@@ -2861,4 +2863,4 @@
2861 OpenServer 6 and add osr5bigcrypt support so when someone migrates 2863 OpenServer 6 and add osr5bigcrypt support so when someone migrates
2862 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 2864 passwords between UnixWare and OpenServer they will still work. OK dtucker@
2863 2865
2864$Id: ChangeLog,v 1.4646 2007/03/21 10:39:57 dtucker Exp $ 2866$Id: ChangeLog,v 1.4647 2007/03/21 10:45:48 dtucker Exp $
diff --git a/regress/agent-getpeereid.sh b/regress/agent-getpeereid.sh
index e5fcedda7..d71324241 100644
--- a/regress/agent-getpeereid.sh
+++ b/regress/agent-getpeereid.sh
@@ -7,7 +7,9 @@ UNPRIV=nobody
7ASOCK=${OBJ}/agent 7ASOCK=${OBJ}/agent
8SSH_AUTH_SOCK=/nonexistant 8SSH_AUTH_SOCK=/nonexistant
9 9
10if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1 10if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1 && \
11 grep "#undef.*HAVE_GETPEERUCRED" ${BUILDDIR}/config.h >/dev/null && \
12 grep "#undef.*HAVE_SO_PEERCRED" ${BUILDDIR}/config.h >/dev/null
11then 13then
12 echo "skipped (not supported on this platform)" 14 echo "skipped (not supported on this platform)"
13 exit 0 15 exit 0