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
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? ;
> 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
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
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
>
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
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
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
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
> 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
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
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
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
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' )
> >
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;
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
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
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:
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
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,
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
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
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
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
[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
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
"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
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
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
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
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
31 matches
Mail list logo