Mailing List Archive

2.1.0p1
Oops. The URL for that is:

http://violet.ibs.com.au/files/openssh/test/

Sorry,
Damien Miller

--
| "Bombay is 250ms from New York in the new world order" - Alan Cox
| Damien Miller - http://www.mindrot.org/
| Email: djm@mindrot.org (home) -or- djm@ibs.com.au (work)
Re: 2.1.0p1 [ In reply to ]
you don't mean

http://violet.ibs.com.au/openssh/files/test ?


/M

On Thu, 18 May 2000, Damien Miller wrote:

> Oops. The URL for that is:
>
> http://violet.ibs.com.au/files/openssh/test/
>
> Sorry,
> Damien Miller
>
> --
> | "Bombay is 250ms from New York in the new world order" - Alan Cox
> | Damien Miller - http://www.mindrot.org/
> | Email: djm@mindrot.org (home) -or- djm@ibs.com.au (work)
>
>
>
>
>


_|_|_| _| _| _|_|_| _| _| _|_|
_| _| _| _| _| _| _| _| _|
_|_|_| _| _| _| _|_| _| _|
_| _| _| _| _| _| _| _|
_| _|_| _|_|_| _| _| _|_|


--==** LIVETS VATTEN **==--
Re: 2.1.0p1 [ In reply to ]
On Thu, 18 May 2000, Magnus Holmberg wrote:

> you don't mean
>
> http://violet.ibs.com.au/openssh/files/test ?

Doh. yes.

--
| "Bombay is 250ms from New York in the new world order" - Alan Cox
| Damien Miller - http://www.mindrot.org/
| Email: djm@mindrot.org (home) -or- djm@ibs.com.au (work)
Re: 2.1.0p1 [ In reply to ]
on a make install, I'm getting:

if [ -f ssh_prng_cmds -a ! -z "yes" ]; then \
/bin/perl fixprogs ssh_prng_cmds ; \
./install-sh -c -m 644 ssh_prng_cmds.out /usr/local/etc/ssh_prng_cmds; \
fi
Can't open perl script "fixprogs": No such file or directory


On Thu, 18 May 2000, Damien Miller wrote:

> On Thu, 18 May 2000, Magnus Holmberg wrote:
>
> > you don't mean
> >
> > http://violet.ibs.com.au/openssh/files/test ?
>
> Doh. yes.
>
> --
> | "Bombay is 250ms from New York in the new world order" - Alan Cox
> | Damien Miller - http://www.mindrot.org/
> | Email: djm@mindrot.org (home) -or- djm@ibs.com.au (work)
>
>
>
>
>

Marc G. Fournier marc.fournier@acadiau.ca
Senior Systems Administrator Acadia University

"These are my opinions, which are not necessarily shared by my employer"
Re: 2.1.0p1 [ In reply to ]
Under Solaris 8, at least it doesn't appear to crash anymore, but when I
connect, I'm getting:

May 18 09:17:15 iris sshd[15312]: error: fcntl(-1, F_GETFL, 0): Bad file number


On Thu, 18 May 2000, Damien Miller wrote:

> On Thu, 18 May 2000, Magnus Holmberg wrote:
>
> > you don't mean
> >
> > http://violet.ibs.com.au/openssh/files/test ?
>
> Doh. yes.
>
> --
> | "Bombay is 250ms from New York in the new world order" - Alan Cox
> | Damien Miller - http://www.mindrot.org/
> | Email: djm@mindrot.org (home) -or- djm@ibs.com.au (work)
>
>
>
>
>

Marc G. Fournier marc.fournier@acadiau.ca
Senior Systems Administrator Acadia University

"These are my opinions, which are not necessarily shared by my employer"
Re: 2.1.0p1 [ In reply to ]
On Thu, May 18, 2000 at 09:16:27AM -0300, Marc G. Fournier wrote:
>
> Under Solaris 8, at least it doesn't appear to crash anymore, but when I
> connect, I'm getting:
>
> May 18 09:17:15 iris sshd[15312]: error: fcntl(-1, F_GETFL, 0): Bad file number

this has been fixed. try:

Index: serverloop.c
===================================================================
RCS file: /cvs/src/usr.bin/ssh/serverloop.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- serverloop.c 2000/05/17 08:20:15 1.23
+++ serverloop.c 2000/05/18 06:35:57 1.24
@@ -392,7 +392,9 @@
/* nonblocking IO */
set_nonblock(fdin);
set_nonblock(fdout);
- set_nonblock(fderr);
+ /* we don't have stderr for interactive terminal sessions, see below */
+ if (fderr != -1)
+ set_nonblock(fderr);

connection_in = packet_get_connection_in();
connection_out = packet_get_connection_out();
Re: 2.1.0p1 [ In reply to ]
> on a make install, I'm getting:
>
> if [ -f ssh_prng_cmds -a ! -z "yes" ]; then \
> /bin/perl fixprogs ssh_prng_cmds ; \
> ./install-sh -c -m 644 ssh_prng_cmds.out
> /usr/local/etc/ssh_prng_cmds; \ fi
> Can't open perl script "fixprogs": No such file or directory

I am getting the same thing, too (on Solaris 2.6).

Does anyone know what/where fixprogs is?

-Garrick James