Re: [dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Roberto E. Vargas Caballero
On Sat, Jul 20, 2013 at 01:28:59AM -0400, Galos, David wrote: > > OpenBSD defines strlcpy function, and the declaration is a bit different > > of the static declartion found in tar.c. The duplication of symbol name > > with different type (one extern and other static, one returning int and > > the

Re: [dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Galos, David
> OpenBSD defines strlcpy function, and the declaration is a bit different > of the static declartion found in tar.c. The duplication of symbol name > with different type (one extern and other static, one returning int and > the other returning size_t) caused tar couldn't compile in OpenBSD. I hav

[dev] [PATCH v2] Add compatibility for OpenBSD in tar

2013-07-19 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" OpenBSD defines strlcpy function, and the declaration is a bit different of the static declartion found in tar.c. The duplication of symbol name with different type (one extern and other static, one returning int and the other returning size_t) caused tar could