Call for testing: OpenSSH-5.4

Kevin Brott kevin.brott at gmail.com
Fri Mar 5 11:31:55 EST 2010


On Wed, Mar 3, 2010 at 19:16, Damien Miller <djm at mindrot.org> wrote:

> On Wed, 3 Mar 2010, Chris Adams wrote:
>
> > Once upon a time, Damien Miller <djm at mindrot.org> said:
> > > OpenSSH 5.4 is almost ready for release, so we would appreciate testing
> > > on as many platforms and systems as possible. This is a big release,
> > > with a number of major new features and many bug fixes.
> >
> > Hmm, build of 20100304 fails on Tru64 (ignore the "long long" info
> > messages):
> >
> > cc: Error: ssh-keygen.c, line 1303: In this statement, "BSDoptarg" is not
> declared. (undeclared)
> >                 fatal("Invalid certificate life specification %s",
> optarg);
>
> Found the problem. The following patch will be in tomorrow's snapshot.
>
> -d
>
> Index: ssh-keygen.c
> ===================================================================
> RCS file: /var/cvs/openssh/ssh-keygen.c,v
> retrieving revision 1.193
> diff -u -p -r1.193 ssh-keygen.c
> --- ssh-keygen.c        3 Mar 2010 01:14:15 -0000       1.193
> +++ ssh-keygen.c        4 Mar 2010 03:15:46 -0000
> @@ -1300,7 +1300,7 @@ parse_cert_times(char *timespec)
>        from = xstrdup(timespec);
>        to = strchr(from, ':');
>         if (to == NULL || from == to || *(to + 1) == '\0')
> -               fatal("Invalid certificate life specification %s", optarg);
> +               fatal("Invalid certificate life specification %s",
> timespec);
>        *to++ = '\0';
>
>        if (*from == '-' || *from == '+')
> _______________________________________________
> openssh-unix-dev mailing list
> openssh-unix-dev at mindrot.org
> https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev
>


building openssh-SNAP-20100305.tar.gz

RHEL ES 4 update5 - i686 still fails to build, but drops out in
ssh-rand-helper.c instead of ssh-keygen.c

...
ssh-rand-helper.c: In function `main':
ssh-rand-helper.c:861: error: `BSDoptind' undeclared (first use in this
function)
ssh-rand-helper.c:861: error: (Each undeclared identifier is reported only
once
ssh-rand-helper.c:861: error: for each function it appears in.)
make: *** [ssh-rand-helper.o] Error 1

        log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);

 :->    if (argc != optind) {
                error("Unexpected commandline arguments.");
                usage();
                exit(1);
        }


No new test failures anywhere else.

-- 
# include <stddisclaimer.h>
/* Kevin  Brott <Kevin.Brott at gmail.com> */


More information about the openssh-unix-dev mailing list