summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/vdcommon.h2
-rw-r--r--vdagent/file_xfer.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/common/vdcommon.h b/common/vdcommon.h
index db9257f..ba987b1 100644
--- a/common/vdcommon.h
+++ b/common/vdcommon.h
@@ -92,8 +92,6 @@ errno_t vdagent_strcpy_s(char *strDestination,
#ifdef _MSC_VER // compiling with Visual Studio
#define snprintf sprintf_s
-#define strncpy(d,s,n) strcpy_s(s, __min(n+1, sizeof(d)), s)
-#define strcat(d,s) strcat_s(d, sizeof(d), s)
#define sscanf sscanf_s
#endif
diff --git a/vdagent/file_xfer.h b/vdagent/file_xfer.h
index 7f756e3..7ac911e 100644
--- a/vdagent/file_xfer.h
+++ b/vdagent/file_xfer.h
@@ -27,7 +27,7 @@ typedef struct ALIGN_VC FileXferTask {
// FIXME: should raise an error if name is too long..
// currently the only user is FileXfer::handle_start
// which verifies that strlen(_name) < MAX_PATH
- vdagent_strncpy_s(name, sizeof(name), _name);
+ vdagent_strcpy_s(name, sizeof(name), _name);
}
HANDLE handle;
uint64_t size;