From 2a815f8820ca402626bd283dd5b75744ddeb9812 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 23 May 2015 18:55:59 +0000 Subject: mir_tstrncpy <> _tcsncpy git-svn-id: http://svn.miranda-ng.org/main/trunk@13791 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Non-IM Contact/src/namereplacing.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/Non-IM Contact') diff --git a/plugins/Non-IM Contact/src/namereplacing.cpp b/plugins/Non-IM Contact/src/namereplacing.cpp index 40d6b050fd..3028cf5f2c 100644 --- a/plugins/Non-IM Contact/src/namereplacing.cpp +++ b/plugins/Non-IM Contact/src/namereplacing.cpp @@ -46,8 +46,8 @@ int findWordInString(const char* line, const char* string, int* lengthOfWord, in { unsigned int i, j = 0; char word[64] = "", OpenDivider[8], CloseDivider[8]; - mir_strncpy(OpenDivider, "(\"", sizeof(OpenDivider)); - mir_strncpy(CloseDivider, "\")", sizeof(CloseDivider)); + strncpy(OpenDivider, "(\"", sizeof(OpenDivider)); + strncpy(CloseDivider, "\")", sizeof(CloseDivider)); /* get the word we r looking for */ if (!strncmp(string, OpenDivider, mir_strlen(OpenDivider))) { for (i = 2; strncmp(&string[i], CloseDivider, mir_strlen(CloseDivider)); i++) { @@ -455,8 +455,8 @@ int stringReplacer(const char* oldString, char* newString, MCONTACT hContact) char *fileContents[MAXLINES] = { NULL }, tempString[MAX_STRING_LENGTH]; // setup the variable names - mir_strncpy(newString, "", sizeof(newString)); - mir_strncpy(var_file, "file(", sizeof(var_file)); + strncpy(newString, "", sizeof(newString)); + strncpy(var_file, "file(", sizeof(var_file)); while ((positionInOldString < (int)mir_strlen(oldString)) && (oldString[positionInOldString] != '\0')) { // load the file... must be first -- cgit v1.2.3