Re: [ovs-dev] [PATCH 0/4] replace sscanf() by our own implementation

2013-11-15 Thread Ben Pfaff
On Fri, Nov 15, 2013 at 10:20:25AM -0800, Jarno Rajahalme wrote: > > On Nov 15, 2013, at 9:47 AM, Ben Pfaff wrote: > > > On Sat, Nov 09, 2013 at 03:55:03PM -0800, Ben Pfaff wrote: > >> The Windows implementation of sscanf() is defective: it does not support > >> the 'hh' modifier. There is an e

Re: [ovs-dev] [PATCH 0/4] replace sscanf() by our own implementation

2013-11-15 Thread Jarno Rajahalme
On Nov 15, 2013, at 9:47 AM, Ben Pfaff wrote: > On Sat, Nov 09, 2013 at 03:55:03PM -0800, Ben Pfaff wrote: >> The Windows implementation of sscanf() is defective: it does not support >> the 'hh' modifier. There is an effort on to port OVS to Hyper-V, so this >> is a problem. This series adds a

Re: [ovs-dev] [PATCH 0/4] replace sscanf() by our own implementation

2013-11-15 Thread Ben Pfaff
On Sat, Nov 09, 2013 at 03:55:03PM -0800, Ben Pfaff wrote: > The Windows implementation of sscanf() is defective: it does not support > the 'hh' modifier. There is an effort on to port OVS to Hyper-V, so this > is a problem. This series adds an implementation of sscanf() to the tree, > under the

[ovs-dev] [PATCH 0/4] replace sscanf() by our own implementation

2013-11-09 Thread Ben Pfaff
The Windows implementation of sscanf() is defective: it does not support the 'hh' modifier. There is an effort on to port OVS to Hyper-V, so this is a problem. This series adds an implementation of sscanf() to the tree, under the name ovs_scan(), which allows for some improvements elsewhere as a