diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regress/agent-getpeereid.sh | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -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 | ||
36 | 20070313 | 38 | 20070313 |
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 | |||
7 | ASOCK=${OBJ}/agent | 7 | ASOCK=${OBJ}/agent |
8 | SSH_AUTH_SOCK=/nonexistant | 8 | SSH_AUTH_SOCK=/nonexistant |
9 | 9 | ||
10 | if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1 | 10 | if 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 | ||
11 | then | 13 | then |
12 | echo "skipped (not supported on this platform)" | 14 | echo "skipped (not supported on this platform)" |
13 | exit 0 | 15 | exit 0 |