Small MAKEDEV bug

2000-05-06 Thread Maxim Sobolev
Hi, I've just noticed that "sh MAKEDEV acd1" doesn't produce node for acd1 due to incorrect comparasion in the "while" loop. This affecting both 4.0-STABLE and 5.0-CURRENT. With this message I'm attaching short patch which should solve this little problem. -Maxim --- MAKEDEV 2000/05/06 08:

Re: Small MAKEDEV bug

2000-05-06 Thread Jeroen Ruigrok van der Werven
-On [2506 10:40], Maxim Sobolev ([EMAIL PROTECTED]) wrote: >- while [ $i -lt $units ]; do >+ while [ $i -le $units ]; do Tested and committed to both CURRENT and 4-STABLE. -- Jeroen Ruigrok van der Werven Network- and systemadministrator <[EMAIL

Re: RSA decrypt problems

2000-05-06 Thread Louis A. Mamakos
> On Fri, 5 May 2000, Kris Kennaway wrote: > > # It's not clear that you installed the openssl.cnf file before making the > # cert - can you confirm? > > Yes I did. I put it in /etc/ssl as you suggested. Just curious, but is there any documentation installed that describes what the contents of

Re: Small MAKEDEV bug

2000-05-06 Thread Bruce Evans
On Sat, 6 May 2000, Maxim Sobolev wrote: > I've just noticed that "sh MAKEDEV acd1" doesn't produce node for acd1 due to > incorrect comparasion in the "while" loop. This affecting both 4.0-STABLE and > 5.0-CURRENT. With this message I'm attaching short patch which should solve > this little prob

rc.d startup scripts

2000-05-06 Thread Will Andrews
Hello, I've noticed an inconsistency among our ports. It seems that not every port that installs rc.d startup scripts includes methods to not only startup, but also shutdown and/or restart, where appropriate. (Sent to -ports for ports hackers' opinions.) Shouldn't this sort of thing be standardi

Re: rc.d startup scripts

2000-05-06 Thread Brandon D. Valentine
On Sat, 6 May 2000, Will Andrews wrote: >Hello, > >I've noticed an inconsistency among our ports. It seems that not every port >that installs rc.d startup scripts includes methods to not only startup, >but also shutdown and/or restart, where appropriate. (Sent to -ports for >ports hackers' opinio

Re: Can someone explain this?

2000-05-06 Thread Bruce Evans
On Sat, 6 May 2000, Dan Nelson wrote: > In the last episode (May 05), Jean-Marc Zucconi said: > > Here is something I don't understand: > > > > $ sh -c '/usr/bin/time ./a.out' > > 2.40 real 2.38 user 0.01 sys > > $ /usr/bin/time ./a.out > > 7.19 real 7.

Odd console problem

2000-05-06 Thread Mark Knight
Under VMware 2... Under world and kernel of yesterday, between the sio1 and sbc0 kernel messages during console boot, various character cease to appear on the screen. (e.g. r, t, u & s). All virtual consoles appear completely unable to display these characters. Otherwise the systems appears sane

TCP becomes very broken just now

2000-05-06 Thread Andrey A. Chernov
Some of recent kernel TCP changes cause TCP completely not working, i.e. any network daemon (mountd, sendmail, cfsd) started from "rc" on dialup machine hangs with 3min "Can't connect' timeout and user level "ppp" started than hangs forever even not dialing. Please fix. -- Andrey A. Chernov <[E

Re: RSA decrypt problems

2000-05-06 Thread Kris Kennaway
On Sat, 6 May 2000, Louis A. Mamakos wrote: > Just curious, but is there any documentation installed that describes > what the contents of the file look like? I went on a hunt for this > recently, and found precious little documentation on openssl provided > with the system. The sample file is

Re: Can someone explain this?

2000-05-06 Thread Jean-Marc Zucconi
> Dan Nelson writes: > In the last episode (May 05), Jean-Marc Zucconi said: >> Here is something I don't understand: >> >> $ sh -c '/usr/bin/time ./a.out' >> 2.40 real 2.38 user 0.01 sys >> $ /usr/bin/time ./a.out >> 7.19 real 7.19 user 0.00 sys >>

Re: TCP becomes very broken just now

2000-05-06 Thread Samuel Tardieu
On 7/05, Andrey A. Chernov wrote: | Some of recent kernel TCP changes cause TCP completely not working, | i.e. any network daemon (mountd, sendmail, cfsd) started from "rc" on | dialup machine hangs with 3min "Can't connect' timeout and user level | "ppp" started than hangs forever even not dia

Re: Can someone explain this?

2000-05-06 Thread Jean-Marc Zucconi
> Bruce Evans writes: > The default of 4 for -mpreferred-stack-boundary perfectly preserves > any initial misaligment of the stack. Under FreeBSD the stack is > initially misaligned (for doubles) with a probability of 1/2. There > was some discussion of fixing this when gcc-2.95 was imp

(no subject)

2000-05-06 Thread blaine minazzi
subscribe freebsd-current To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: TCP becomes very broken just now

2000-05-06 Thread Andrey A. Chernov
On Sat, May 06, 2000 at 11:53:23PM +0200, Samuel Tardieu wrote: > On 7/05, Andrey A. Chernov wrote: > > | Some of recent kernel TCP changes cause TCP completely not working, > | i.e. any network daemon (mountd, sendmail, cfsd) started from "rc" on > | dialup machine hangs with 3min "Can't conne

Re: rc.d startup scripts

2000-05-06 Thread Will Andrews
On Sat, May 06, 2000 at 04:15:33PM -0400, Brandon D. Valentine wrote: > You have answered your own question. What exists in ${PREFIX}/etc/rc.d > are startup scripts, *not* shutdown or restart scripts. Okay, then you think that all the ports rc.d *.sh scripts should be changed only to allow start

Re: RSA decrypt problems

2000-05-06 Thread Garrett Wollman
< said: > FWIW, I've had a weird (perhaps related) problem, only in the > reverse. After creating a certificate (ie: 'make certificate' in > apache), I was unable to connect to the server from a Netscape > 4.72 browser. It only told me there was a decryption error in the > apache logs. I've h

Re: RSA decrypt problems

2000-05-06 Thread Steve Price
On Sat, 6 May 2000, Garrett Wollman wrote: # I've had this problem with recent values of OpenSSL since last # November. I haven't gotten around to playing with permutations of the # openssl.cnf file yet. I tried my site certificate on various versions # of Netscape and Exploder, and all of them

Re: RSA decrypt problems

2000-05-06 Thread Kris Kennaway
On Sat, 6 May 2000, Garrett Wollman wrote: > I've had this problem with recent values of OpenSSL since last > November. I haven't gotten around to playing with permutations of the I'm strongly suspecting something wrong with the encoding of the certificate. Can you grab dumpasn1.c and dumpasn1.

Re: RSA decrypt problems

2000-05-06 Thread Kris Kennaway
On Sat, 6 May 2000, Kris Kennaway wrote: > http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.c > and http://www.cs.auckland.ac.nz/~pgut001/dumpasn1.cfg I've made these into a port, so you can just install the converters/dumpasn1 port and save the minor trouble of editing the stupid ^Z out of the .c

Re: Small MAKEDEV bug

2000-05-06 Thread Maxim Sobolev
Bruce Evans wrote: > On Sat, 6 May 2000, Maxim Sobolev wrote: > > > I've just noticed that "sh MAKEDEV acd1" doesn't produce node for acd1 due to > > incorrect comparasion in the "while" loop. This affecting both 4.0-STABLE and > > 5.0-CURRENT. With this message I'm attaching short patch which sh

OpenSSH SSH2 support

2000-05-06 Thread Kris Kennaway
I've finished merging the latest OpenSSH changes into our version (vice versa, actually) since I'm told it's stabilized enough to be useful. OpenSSH now has SSH2 protocol support, meaning several things: * Support for DSA keys, removing the need to use RSA (and hence RSAREF), so people in commerc