On 03/26/2014 02:05 PM, Christophe Fergeau wrote:
On Mon, Mar 24, 2014 at 07:02:40PM +0200, Uri Lublin wrote:
Visual Studio complains:
vdagent\file_xfer.h(28) : warning C4996: 'strncpy': This function or
variable may be unsafe.
Consider using strncpy_s instead.
To disable depreca
On Mon, Mar 24, 2014 at 07:02:40PM +0200, Uri Lublin wrote:
> Visual Studio complains:
> vdagent\file_xfer.h(28) : warning C4996: 'strncpy': This function or
> variable may be unsafe.
> Consider using strncpy_s instead.
> To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
> See o
Visual Studio complains:
vdagent\file_xfer.h(28) : warning C4996: 'strncpy': This function or
variable may be unsafe.
Consider using strncpy_s instead.
To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
See online help for details.
Replace strncpy with strcpy_s, which is impleme