diff options
Diffstat (limited to 'plugins/Non-IM Contact/src/namereplacing.cpp')
-rw-r--r-- | plugins/Non-IM Contact/src/namereplacing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Non-IM Contact/src/namereplacing.cpp b/plugins/Non-IM Contact/src/namereplacing.cpp index 8f3f07e82e..622126ff64 100644 --- a/plugins/Non-IM Contact/src/namereplacing.cpp +++ b/plugins/Non-IM Contact/src/namereplacing.cpp @@ -7,7 +7,7 @@ int readFileIntoArray(int fileNumber, char *FileContents[]) DBVARIANT dbv;
char tszFileName[MAX_PATH];
- if (db_get_ts(NULL,MODNAME, dbSetting, &dbv))
+ if (db_get_ts(NULL, MODNAME, dbSetting, &dbv))
return 0;
if (!strncmp("http://", tszFileName, 7))
@@ -245,7 +245,7 @@ void checkStringForSave(HANDLE hContact, char* str) B = strtok(NULL, ",\")");
j = B - ©OfStr[i] + strlen(B)+1;
if (A && B)
- db_set_s(hContact,MODNAME, A, B);
+ db_set_s(hContact, MODNAME, A, B);
else strncat(newStr, &str[i], j);
i += j;
|