Re: adding a new function to libc

2001-05-12 Thread Kris Kennaway
On Sat, May 12, 2001 at 02:10:45AM -0400, Daniel Hemmerich wrote: > Any comments, suggestions, swears concerning adding a new function, > strndup(), to libc? > > So that instead of permitting it to attempt to allocate a large chunk of > memory, it is possible to give it a max length. #include

Re: SSH Must Die

2001-05-12 Thread Kris Kennaway
On Sat, May 12, 2001 at 04:24:48PM -0700, Terry Lambert wrote: > Jordan Hubbard wrote: > > > > ssh works just fine for me in 4.3. You must be doing something > > wrong. > > I used that "sysinstall" thing Jordan wrote to upgrade > from a 4.2 to a 4.3 system. > > Is that what I'm doing wrong? ;

Re: SSH Must Die

2001-05-12 Thread Jordan Hubbard
> I used that "sysinstall" thing Jordan wrote to upgrade > from a 4.2 to a 4.3 system. > > Is that what I'm doing wrong? ;^). Probably! Anybody would be the first to tell you that sysinstall's "upgrade" feature only gets you there unassisted maybe 3 times out of 5. The contents of /etc are si

Re: SSH Must Die

2001-05-12 Thread Erik Trulsson
On Sat, May 12, 2001 at 04:31:29PM -0700, Terry Lambert wrote: > Erik Trulsson wrote: > > Exactly how is rpping it out of FreeBSD supposed to make ssh work? > > I don't necessarily want it to work or not work, I just > want it to quit being a pain in my backside. > > If it can't be made to upgra

Re: SSH Must Die

2001-05-12 Thread Josh Paetzel
On Saturday 12 May 2001 18:40, Terry Lambert wrote: > j wrote: > > On Saturday 12 May 2001 06:24, Terry Lambert wrote: > > > This whole ssh B.S. is very annoying. > > > > > > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > > > upgrade menu option, SSH stops working, for no good reason >

Re: SSH Must Die

2001-05-12 Thread Terry Lambert
j wrote: > On Saturday 12 May 2001 06:24, Terry Lambert wrote: > > This whole ssh B.S. is very annoying. > > > > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > > upgrade menu option, SSH stops working, for no good reason > > (_any_ reason is no good). > > > > You did make the needed a

Re: SSH Must Die

2001-05-12 Thread Terry Lambert
Erik Trulsson wrote: > Exactly how is rpping it out of FreeBSD supposed to make ssh work? I don't necessarily want it to work or not work, I just want it to quit being a pain in my backside. If it can't be made to upgrade correctly, then ripping it out also satisfies the criteria necessary to ac

Re: SSH Must Die

2001-05-12 Thread Terry Lambert
Jordan Hubbard wrote: > > ssh works just fine for me in 4.3. You must be doing something > wrong. I used that "sysinstall" thing Jordan wrote to upgrade from a 4.2 to a 4.3 system. Is that what I'm doing wrong? ;^). -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe f

Re: xargs(1) "replstr" patch

2001-05-12 Thread Garance A Drosihn
At 8:37 PM -0700 5/11/01, Dima Dorfman wrote: >Garance A Drosihn <[EMAIL PROTECTED]> writes: > > When I install this man page on -stable, and do a 'man xargs', >> that last line is displayed to the user as: >> > > /bin/ls -1d [A-Z]* | xargs -J [] cp -rp /bin/ls0 0/bin/ls1 > >... Old version

Re: adding a new function to libc

2001-05-12 Thread Bakul Shah
> Any comments, suggestions, swears concerning adding a new function, > strndup(), to libc? Many very good programmers I know carry around a library of useful functions (and usually don't bother about inclusion in libc). So I would suggest first you should keep this function in your own library

Jetzt gewinnen, in über 100 Gewinnspielen!

2001-05-12 Thread Mail-Service
Falls unerwünscht, bitte sofort löschen! Gewinn24.de meldet Sie jeden Monat bei über 100 der besten Gewinnspiele im Internet an. Sie sparen mit Gewinn24.de eine Menge Zeit und Geld. Für maximal 2,- DM pro Monat sind Sie dabei und haben jeden Monat Gewinnchancen auf viele tolle Preise im Gesamtwer

Re: SSH Must Die

2001-05-12 Thread Erik Trulsson
On Sat, May 12, 2001 at 07:23:20AM -0700, Jordan Hubbard wrote: > ssh works just fine for me in 4.3. You must be doing something > wrong. > > - Jordan > > From: Terry Lambert <[EMAIL PROTECTED]> > Subject: SSH Must Die > Date: Sat, 12 May 2001 04:24:29 -0700 > > > This whole ssh B.S. is very a

Re: SSH Must Die

2001-05-12 Thread Matthew Jacob
On Sat, 12 May 2001, Jordan Hubbard wrote: > ssh works just fine for me in 4.3. You must be doing something > wrong. There's a very likely 3rd possibility: ssh works fine, but the upgrade process has holes that even traps the experienced. To Unsubscribe: send mail to [E

Re: adding a new function to libc

2001-05-12 Thread Valentin Nechayev
Sat, May 12, 2001 at 17:12:41, roam (Peter Pentchev) wrote about "Re: adding a new function to libc": > > /* This is candidate to have optimized assembler variant */ > > size_t strnlen( const char* src, size_t max ) > > { > > size_t n; > > while( n < max && *src != '\0' ) > >

Re: adding a new function to libc

2001-05-12 Thread Assar Westerlund
Daniel Hemmerich <[EMAIL PROTECTED]> writes: > Any comments, suggestions, swears concerning adding a new function, > strndup(), to libc? See src/crypto/heimdal/lib/roken/strndup.c :-) > char * > strndup(str, max_len) > const char *str; > size_t max_len; > { > size_t len;

Re: SSH Must Die

2001-05-12 Thread Jordan Hubbard
ssh works just fine for me in 4.3. You must be doing something wrong. - Jordan From: Terry Lambert <[EMAIL PROTECTED]> Subject: SSH Must Die Date: Sat, 12 May 2001 04:24:29 -0700 > This whole ssh B.S. is very annoying. > > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > upgrade men

Re: SSH Must Die

2001-05-12 Thread Valentin Nechayev
Sat, May 12, 2001 at 04:24:29, tlambert2 (Terry Lambert) wrote about "SSH Must Die": > This whole ssh B.S. is very annoying. > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > upgrade menu option, SSH stops working, for no good reason > (_any_ reason is no good). > It complains about

Re: adding a new function to libc

2001-05-12 Thread Peter Pentchev
On Sat, May 12, 2001 at 05:05:44PM +0300, Valentin Nechayev wrote: > Hello Daniel Hemmerich! [snip] > > Here strnlen() is used which is non-standard but I saw it in ~4 quite > different projects (e.g. Linux kernel) with identical interface > and result value; a variant of implementation follows:

Re: adding a new function to libc

2001-05-12 Thread Valentin Nechayev
Hello Daniel Hemmerich! Sat, May 12, 2001 at 02:10:45, dan (Daniel Hemmerich) wrote about "adding a new function to libc": > Any comments, suggestions, swears concerning adding a new function, > strndup(), to libc? > > So that instead of permitting it to attempt to allocate a large chunk o

Re: SSH Must Die

2001-05-12 Thread j
On Saturday 12 May 2001 06:24, Terry Lambert wrote: > This whole ssh B.S. is very annoying. > > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > upgrade menu option, SSH stops working, for no good reason > (_any_ reason is no good). > You did make the needed additions to /etc/pam.conf,

Re: adding a new function to libc

2001-05-12 Thread Terry Lambert
To follow myself up: > > > > Any comments, suggestions, swears concerning adding a new function, > > strndup(), to libc? > > > > So that instead of permitting it to attempt to allocate a large > > chunk of memory, it is possible to give it a max length. > > How about just knowing what you are

Re: SSH Must Die

2001-05-12 Thread Neil Blakey-Milner
On Sat 2001-05-12 (04:24), Terry Lambert wrote: > This whole ssh B.S. is very annoying. > > After an upgrade from 4.2 to 4.3 using a CDROM boot plus > upgrade menu option, SSH stops working, for no good reason > (_any_ reason is no good). > > It complains about RSA not being in libcrypto, even t

Re: kernel boot up problem

2001-05-12 Thread Terry Lambert
Mike Smith wrote: > > You don't have to change anything; IRQ sharing is allowed by > PCI (and in fact, unless you change the slot the card is in, > you can't change one without changing the other). [ ... ] > > > I am using FreeBSD 3.3 on a proprietary machine. ** -- T

Re: adding a new function to libc

2001-05-12 Thread Terry Lambert
Daniel Hemmerich wrote: > > Any comments, suggestions, swears concerning adding a new function, > strndup(), to libc? > > So that instead of permitting it to attempt to allocate a large > chunk of memory, it is possible to give it a max length. How about just knowing what you are passing to the

Re: kernel boot up problem

2001-05-12 Thread Terry Lambert
[EMAIL PROTECTED] wrote: > > Thanks for the reply. I first tried to change the IRQ from > the BIOS. I saw that the IRQ of both the cards changes > together. The machine has 4 CPUs and I am booting from CPU > #1. The bios shows 4 PCI slots. The "Plug and Play OS" entry > in the BIOS is set to "No

SSH Must Die

2001-05-12 Thread Terry Lambert
This whole ssh B.S. is very annoying. After an upgrade from 4.2 to 4.3 using a CDROM boot plus upgrade menu option, SSH stops working, for no good reason (_any_ reason is no good). It complains about RSA not being in libcrypto, even though "nm" shows that that claim is full of crap. Yes, I have

Re: Question about building source

2001-05-12 Thread Terry Lambert
"David Mr. Hackers O'Brien" wrote: > On Thu, May 10, 2001 at 08:28:41AM -0700, Terry Lambert wrote: > > > If it doesn't work as you have said, "make release' also _doesn't_ > > > work; we cannot make a distribution. Obviously, it's wrong:) > > > > I think you are missing the facts: > ... > > o

Re: xargs(1) "replstr" patch

2001-05-12 Thread Peter Pentchev
Seconded :) G'luck, Peter -- Do you think anybody has ever had *precisely this thought* before? On Sat, May 12, 2001 at 11:04:42AM +0100, Brian Somers wrote: > I'd suggest going ahead and committing it ASAP - before people start > ``discussing'' it again :oI > > Feel free to blame me for rev

Re: kernel boot up problem

2001-05-12 Thread Mike Smith
You don't have to change anything; IRQ sharing is allowed by PCI (and in fact, unless you change the slot the card is in, you can't change one without changing the other). > Thanks for the reply. I first tried to change the IRQ from the BIOS. I saw > that the IRQ of both the cards changes tog

Re: xargs(1) "replstr" patch

2001-05-12 Thread Brian Somers
I'd suggest going ahead and committing it ASAP - before people start ``discussing'' it again :oI Feel free to blame me for reviewing it !!! > Folks, > > The attached patch adds a "replacement string" feature to xargs(1). > There's a full description in the man page update (also attached), but

Re: subscribe

2001-05-12 Thread Jordan Hubbard
I guess we could, but somebody would have to do it. :) - Jordan From: "David O'Brien" <[EMAIL PROTECTED]> Subject: Re: subscribe Date: Fri, 11 May 2001 18:34:57 -0700 > On Fri, May 11, 2001 at 05:01:13PM -0700, Jordan Hubbard wrote: > > Argh! I'm sorry folks, I almost always remember to delete