Re: [PATCH] frame length validation for USB ethernet adapters

2011-03-16 Thread Loganaden Velvindron
The broken udav(4) diff is my fault. I didn't test with NFS and large file transfers when jsg@ sent me his diff (privately). He trusted my feedback and that's how it was committed. Can we move on now ? //Logan C-x-C-c

Re: [PATCH] Bypass routing table for mcast packets when using IP_MULTICAST_IF

2011-03-16 Thread Christiano F. Haesbaert
On 12 June 2010 16:26, Christiano F. Haesbaert wrote: > Hi, > > The following will disregard the routing table for multicast packets > when the application chose the interface with IP_MULTICAST_IF, if not, > normal lookup will take place. > > Ripd now no longer needs to explicitly add the mcast ho

Re: [PATCH] frame length validation for USB ethernet adapters

2011-03-16 Thread Loganaden Velvindron
Hi Kiki, Can you send us a trace & dmesg ? //Logan C-x-C-c

Re: Missing icps_bmcastecho in netstat.

2011-03-16 Thread Christiano F. Haesbaert
On Wed, Mar 16, 2011 at 11:45:03PM +, Stuart Henderson wrote: > On 2011/03/16 19:01, Christiano F. Haesbaert wrote: > > On 10 March 2011 19:31, Christiano F. Haesbaert > > wrote: > > > Hi, the following displays rejected icmp echo requests sent to > > > bcast/mcast. > > > > > > Index: inet.c

Re: bin/ksh: fix possible use of uninitialized variable

2011-03-16 Thread Kevin Lo
On Wed, 2011-03-16 at 12:30 -0600, Theo de Raadt wrote: > I don't see any warnings. Please show them. > > If gcc is being fooled by loops, then this is because gcc is stupid. > it you show the warnings we can judge it. > > In particular, the slen one looks totally bogus. eval.c: In function 'ex

Re: ISO-8859-1 character in manpage

2011-03-16 Thread Ingo Schwarze
Hi Anthony, Anthony J. Bentley wrote on Wed, Mar 16, 2011 at 01:37:50PM -0600: > $ mandoc -Tlint /usr/src/share/man/man4/udl.4 > /usr/src/share/man/man4/udl.4:42:6: > ERROR: skipping bad character: ignoring byte Thanks for reporting! Indeed, that character had to

Re: Missing icps_bmcastecho in netstat.

2011-03-16 Thread Stuart Henderson
On 2011/03/16 19:01, Christiano F. Haesbaert wrote: > On 10 March 2011 19:31, Christiano F. Haesbaert > wrote: > > Hi, the following displays rejected icmp echo requests sent to bcast/mcast. > > > > Index: inet.c > > === > > RCS file:

Re: Missing icps_bmcastecho in netstat.

2011-03-16 Thread Christiano F. Haesbaert
On 10 March 2011 19:31, Christiano F. Haesbaert wrote: > Hi, the following displays rejected icmp echo requests sent to bcast/mcast. > > Index: inet.c > === > RCS file: /cvs/src/usr.bin/netstat/inet.c,v > retrieving revision 1.115 > d

Re: cwm diff: some fixes and improvements

2011-03-16 Thread Sviatoslav Chagaev
On Wed, 16 Mar 2011 22:31:06 +0200 Sviatoslav Chagaev <0x1...@gmail.com> wrote: > [calmwm.h, conf.c, mousefunc.c, parse.y] > When a window is being moved with the mouse, if the window comes within > SNAPDIST pixels of the screen's edge -- snap the window to the screen's > edge. > > [kbfunc.c] > S

Re: cwm diff: some fixes and improvements

2011-03-16 Thread Okan Demirmen
thanks, I'll take a look at these. in the future, please send separate diffs for new features and bugfixes - thanks. cheers, okan On Wed 2011.03.16 at 22:31 +0200, Sviatoslav Chagaev wrote: > [calmwm.h, conf.c, mousefunc.c, parse.y] > When a window is being moved with the mouse, if the window co

cwm diff: some fixes and improvements

2011-03-16 Thread Sviatoslav Chagaev
[calmwm.h, conf.c, mousefunc.c, parse.y] When a window is being moved with the mouse, if the window comes within SNAPDIST pixels of the screen's edge -- snap the window to the screen's edge. [kbfunc.c] Suppose moveamount=1, then bigmoveamount=10. The window is 3 pixels away from the screen's edge.

Re: [PATCH] frame length validation for USB ethernet adapters

2011-03-16 Thread Matthias Kilian
Hi, On Wed, Mar 16, 2011 at 04:58:19PM -0400, Loganaden Velvindron wrote: > After my experience with udav(4), I took a look at other USB > adapters. The diff makes all of them more consistent by checking > the frame length returned and validating it. > > Since I don't own any of those adapters

[PATCH] frame length validation for USB ethernet adapters

2011-03-16 Thread Loganaden Velvindron
After my experience with udav(4), I took a look at other USB adapters. The diff makes all of them more consistent by checking the frame length returned and validating it. Since I don't own any of those adapters, I must rely on you people to test them. The diff is wrong unless successful report

ISO-8859-1 character in manpage

2011-03-16 Thread Anthony J. Bentley
$ mandoc -Tlint /usr/src/share/man/man4/udl.4 /usr/src/share/man/man4/udl.4:42:6: ERROR: skipping bad character: ignoring byte The o with diaeresis should be replaced with the \(:o escape. (See mandoc_char(7).) Would send a patch, but I've never had luck sending high

the SMCWUSB-N2 is an otus(4)

2011-03-16 Thread Anthony J. Bentley
Sent from a SMCWUSB-N2: otus0 at uhub0 port 3 "ATHER USB2.0 WLAN" rev 2.00/1.06 addr 2 otus0: MAC/BBP AR9170, RF AR9102, MIMO 2T2R, address 00:22:2d:c0:30:b3 Index: otus.4 === RCS file: /cvs/src/share/man/man4/otus.4,v retrieving revi

Re: bin/ksh: fix possible use of uninitialized variable

2011-03-16 Thread Okan Demirmen
On Wed 2011.03.16 at 12:30 -0600, Theo de Raadt wrote: > I don't see any warnings. Please show them. ksh builds with -Wall by default, so these were emitted: /home/okan/hack/open/ksh/ksh-current/eval.c: In function 'expand': /home/okan/hack/open/ksh/ksh-current/eval.c:155: warning: 'x.split' may

Re: bin/ksh: fix possible use of uninitialized variable

2011-03-16 Thread Theo de Raadt
I don't see any warnings. Please show them. If gcc is being fooled by loops, then this is because gcc is stupid. it you show the warnings we can judge it. In particular, the slen one looks totally bogus. > This diff fixes uninitialized variable warnings emitted by gcc 4.2.1 > on i386/amd64. >

Cartuchos Laser Originales

2011-03-16 Thread i...@ercas.com.ar
header bg Ercas: Especialistas en cartuchos = Cartuchos & impresoras Cartuchos originales HP --- Somos distribuidores de cartuchos originales HP. Consulte por precios! Nos dedicamos a la venta de cartuchos originales: Hewlett Packard Epson

snmpd(8) linkUp/linkDown trap

2011-03-16 Thread Reyk Floeter
hi, the following diff adds the linkUp/Down traps to snmpd. this will help to track interface link state changes via snmp and also virtual link states like carp(4) BACKUP <-> MASTER transitions. snmpd(8) monitors the link state changes and send traps to the configured receivers accordingly. lim

Re: hack(6) fails to display help files

2011-03-16 Thread Simon Nicolussi
No one wanting to commit this? It is a bug fix, after all. -- Simon Nicolussi, http://homepage.uibk.ac.at/~csag9583/

{Spam?} {Disarmed} Etno cash plus

2011-03-16 Thread National Bank Of Greece
National Bank of Greece Αγαπητοί πελάτες, Τα αρχεία μας δείχνουν ότι η σύνδεση του λογαριασμού σας έχει παγώσει λόγω της ακόλουθους λόγους. Είσοδος σε δίκη με ανακριβείς πλ

Virus "Email.Phishing.Bank-108" gefunden

2011-03-16 Thread Inode Mailscan
Sehr geehrte Damen und Herren, in dem E-Mail mit dem Betreff 'Access Availability' (gesendet am Wed, 16 Mar 2011 02:11:38 -0600 (MDT)) mit der angegebenen Absenderadresse 'BankMuscat ' wurde der Virus 'Email.Phishing.Bank-108' gefunden. Aus diesem Grund wurde die E-Mail nicht zugestellt! Ihr Inod