Pending OpenSSH release, call for testing.
Corinna Vinschen
vinschen at redhat.com
Fri Aug 13 02:22:52 EST 2004
Hi Darren,
On Aug 12 23:55, Darren Tucker wrote:
> Hi All.
> OpenSSH is getting ready for a release soon, so we are asking for
> all interested parties to test a snapshot.
there's a typo in bsd-misc.c, which creates a common symbol __progname
even if the system provides one. That's a problem when linking on Cygwin,
since in that case the linker creates the symbol instead of matching it
against the dll exported symbol __imp____progname. Patch attached.
The testsuite fails on Cygwin in the "pass multiple env, accept multiple env"
test in envpass.sh. I don't know why since it's no problem to send
env. variables usually.
Corinna
Index: openbsd-compat/bsd-misc.c
===================================================================
RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-misc.c,v
retrieving revision 1.23
diff -p -u -r1.23 bsd-misc.c
--- openbsd-compat/bsd-misc.c 17 Jul 2004 04:07:42 -0000 1.23
+++ openbsd-compat/bsd-misc.c 12 Aug 2004 16:18:17 -0000
@@ -19,7 +19,7 @@
RCSID("$Id: bsd-misc.c,v 1.23 2004/07/17 04:07:42 dtucker Exp $");
-#ifndef HAVE__PROGNAME
+#ifndef HAVE___PROGNAME
char *__progname;
#endif
--
Corinna Vinschen
Cygwin Co-Project Leader
Red Hat, Inc.
More information about the openssh-unix-dev
mailing list