Ofertas Imperdibles en PcDiscount !

2011-03-04 Thread Rodrigo Ferreri
(*)Bases y Condiciones. Oferta valida unicamente para nuestros clientes compradores de equipos Notebooks y Desktop durante el periodo del 01/01/11 al 31/03/11. Servicio brindado en forma gratuita hasta el 31 de Marzo del 2011 con una duracion de 20 minutos por cada sesion de asistencia re

fix display glitches with hexdump -C and tcpdump -X in UTF-8 locale

2011-03-04 Thread Stefan Sperling
There are some display glitches when the UTF-8 locale is used. So far I know about hexdump -C (reported by naddy) and tcpdump -X. Both print invalid UTF-8 to the screen. The problem is that latin1 characters end up being printed by applications that use ctype(3) functions like isprint(3). Any lati

主题

2011-03-04 Thread pw
pw 2011-3-5 [demime 1.01d removed an attachment of type image/jpeg which had a name of wu.jpg]

Re: Update UTF-8 locale ctype data (was: Re: ls(1) multibyte support)

2011-03-04 Thread Stefan Sperling
On Sat, Jan 15, 2011 at 12:44:51AM +0100, Stefan Sperling wrote: > On Fri, Jan 14, 2011 at 05:21:46PM +0100, Stefan Sperling wrote: > > On Thu, Jan 06, 2011 at 07:52:19PM +0300, Alexander Polakov wrote: > > > * Alexander Polakov [110105 17:20]: > > > > Hi, > > > > > > > > here's an updated versio

Fejsuj na novom laptopu!

2011-03-04 Thread Top Shop
Top Shop Dormeo Top Shop preporuD uje: Izaberi svoj poloE>aj spavanja, zovi prijatelje i osvoji HP laptop! Kako spavaš? SklupD ano kao bubica ili bahato kao kralj? Zanima te šta to zapravo znaD i? UD estvuj u nagradnom konkursu - na Facebooku, i saznaj šta znaD i poloE>aj u kom spavaš, zaba

Termofusión

2011-03-04 Thread TBX
$ 379 Pesos Termofusora 800 Watt Boq.20-25-32mm Potencia 800 watts / Uso : Termofusion de Caños Aquasistem y Sigas / Para Caños de Agua y Gas Incluye Boquillas de 20mm 25mm 32mm / Provist

Re: OpenBSD crash on an IBM x3550 M3

2011-03-04 Thread David Gwynne
i agree that mikebs change should go in. On 05/03/2011, at 12:10 AM, Mark Kettenis wrote: >> Date: Fri, 4 Mar 2011 07:30:24 -0600 >> From: Marco Peereboom >> >> That is a huge penalty because it is read over the pci bus. The trick >> with 0x should work just fine per the doco and other

ospfd and large lsupdates

2011-03-04 Thread Claudio Jeker
Currently ospfd has a problem when a single lsupdate is bigger then the MTU. Normaly this is not a problem but Benjamin Papillon hit this limit on a VPN hub. This diff changes the way lsupdate.c handels buffers. The buffer is changed from a MTU sized to a dynamic one that can grow up to 64k - head

Re: OpenBSD crash on an IBM x3550 M3

2011-03-04 Thread Mark Kettenis
> Date: Fri, 4 Mar 2011 07:30:24 -0600 > From: Marco Peereboom > > That is a huge penalty because it is read over the pci bus. The trick > with 0x should work just fine per the doco and other os' drivers > (on top of my head). The question I have is does Linux only have one > device per

fix some memory leaks in ospfd

2011-03-04 Thread Claudio Jeker
While searching a bigger memory leak in one of my diffs I found these others. Most of them are harmless cleanup on shutdown problems. The only one that may be problematic is the missing vertex_nexthop_clear() in vertex_free(). Please test and OK :) -- :wq Claudio Index: neighbor.c ==

Re: OpenBSD crash on an IBM x3550 M3

2011-03-04 Thread Marco Peereboom
That is a huge penalty because it is read over the pci bus. The trick with 0x should work just fine per the doco and other os' drivers (on top of my head). The question I have is does Linux only have one device per interrupt? I am going to reference the doco one more time on this. On Th

Re: tiny imsg_init(3) correction in EXAMPLES

2011-03-04 Thread Claudio Jeker
On Fri, Mar 04, 2011 at 01:43:03PM +0500, Anton Maksimenkov wrote: > Hi. > > I found that manpage for imsg-family have a little mistake: > ... >if (msgbuf_write(ibuf->w) < 0) { > ... > > It seems it should be: >if (msgbuf_write(&ibuf->w) < 0) { Yes that's

tiny imsg_init(3) correction in EXAMPLES

2011-03-04 Thread Anton Maksimenkov
Hi. I found that manpage for imsg-family have a little mistake: ... if (msgbuf_write(ibuf->w) < 0) { ... It seems it should be: if (msgbuf_write(&ibuf->w) < 0) { -- antonvm