Re: [ovs-dev] [PATCH 1/4] util: Fix abs_file_name() bugs on Windows.

2018-08-03 Thread Alin Serdean
On 3 Aug 2018, at 18:52, Ben Pfaff mailto:b...@ovn.org>> wrote: On Fri, Aug 03, 2018 at 03:41:55PM +, Alin Serdean wrote: abs_file_name() believed that a file name that begins with / or contains : is absolute and that any other file name is relative. On Windows, this is wrong in at least

Re: [ovs-dev] [PATCH 1/4] util: Fix abs_file_name() bugs on Windows.

2018-08-03 Thread Ben Pfaff
On Fri, Aug 03, 2018 at 03:41:55PM +, Alin Serdean wrote: > > > > abs_file_name() believed that a file name that begins with / or contains : > > is absolute and that any other file name is relative. On Windows, this is > > wrong in at least the following ways: > > > >* / and \ are

Re: [ovs-dev] [PATCH 1/4] util: Fix abs_file_name() bugs on Windows.

2018-08-03 Thread Alin Serdean
> > abs_file_name() believed that a file name that begins with / or contains : > is absolute and that any other file name is relative. On Windows, this is > wrong in at least the following ways: > >* / and \ are interchangeable on Windows. > >* A name that begins with \\ or // is also

[ovs-dev] [PATCH 1/4] util: Fix abs_file_name() bugs on Windows.

2018-07-24 Thread Ben Pfaff
abs_file_name() believed that a file name that begins with / or contains : is absolute and that any other file name is relative. On Windows, this is wrong in at least the following ways: * / and \ are interchangeable on Windows. * A name that begins with \\ or // is also absolute. * A