Displaying 3 results from an estimated 3 matches for "asock".
Did you mean:
sock
2006 Sep 25
1
[PATCH] implementation of getpeereid() for Solaris
...uid_t *euid, gid_t *gid)
diff -ur openssh/regress/agent-getpeereid.sh openssh-SNAP-20060921-patched//regress/agent-getpeereid.sh
--- openssh/regress/agent-getpeereid.sh Mon Jul 24 07:31:42 2006
+++ openssh-SNAP-20060921-patched//regress/agent-getpeereid.sh Mon Sep 25 12:33:47 2006
@@ -7,7 +7,9 @@
ASOCK=${OBJ}/agent
SSH_AUTH_SOCK=/nonexistant
-if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1
+if grep "#undef.*HAVE_GETPEEREID" ${BUILDDIR}/config.h >/dev/null 2>&1 && \
+ grep "#undef.*HAVE_GETPEERUCRED" ${BUILDDIR}/co...
2018 Aug 17
3
Call for testing: OpenSSH 7.8
On SPARC Solaris 10, using Solaris' native OpenSSL and Solaris
Studio 12.2, I got the following errors:
run test agent-getpeereid.sh ...
ssh-add did not fail for nobody: 1 < 2
failed disallow agent attach from other uid
gmake[1]: *** [t-exec] Error 1
gmake[1]: Leaving directory
`/scratch/wieland/src/openssh/openssh-SNAP-20180817/regress'
gmake: *** [tests] Error 2
--
Jeff Wieland,
2003 Jun 20
0
[PATCH] Regression test portabilization.
...=============
RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/regress/agent-getpeereid.sh,v
retrieving revision 1.1
diff -u -r1.1 agent-getpeereid.sh
--- regress/agent-getpeereid.sh 22 Jan 2003 06:53:17 -0000 1.1
+++ regress/agent-getpeereid.sh 20 Jun 2003 13:18:59 -0000
@@ -7,6 +7,12 @@
ASOCK=${OBJ}/agent
SSH_AUTH_SOCK=/nonexistant
+if grep "#undef.*HAVE_GETPEEREID" ${OBJ}/config.h >/dev/null 2>&1
+then
+ echo "skipped (not supported on this platform)"
+ exit 0
+fi
+
trace "start agent"
eval `${SSHAGENT} -s -a ${ASOCK}` > /dev/null
r=$?
I...