From d0602c28cc309845567dd24b0cfd614ddb0c2784 Mon Sep 17 00:00:00 2001
From: George Hazan <george.hazan@gmail.com>
Date: Tue, 23 Jul 2013 17:51:31 +0000
Subject: git-svn-id: http://svn.miranda-ng.org/main/trunk@5456
 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c

---
 plugins/TabSRMM/src/chat/clist.cpp | 2 +-
 plugins/TabSRMM/src/chat/log.cpp   | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

(limited to 'plugins')

diff --git a/plugins/TabSRMM/src/chat/clist.cpp b/plugins/TabSRMM/src/chat/clist.cpp
index 363e815947..b570c360f1 100644
--- a/plugins/TabSRMM/src/chat/clist.cpp
+++ b/plugins/TabSRMM/src/chat/clist.cpp
@@ -267,7 +267,7 @@ BOOL CList_AddEvent(HANDLE hContact, HICON Icon, HANDLE event, int type, const T
 		return FALSE;
 
 	va_start(marker, fmt);
-	mir_vsntprintf(szBuf, _tcslen(szBuf), fmt, marker);
+	_vstprintf(szBuf, fmt, marker); //!!!!!!!!
 	va_end(marker);
 
 	cle.cbSize = sizeof(cle);
diff --git a/plugins/TabSRMM/src/chat/log.cpp b/plugins/TabSRMM/src/chat/log.cpp
index 51ef5776b3..0d45441233 100644
--- a/plugins/TabSRMM/src/chat/log.cpp
+++ b/plugins/TabSRMM/src/chat/log.cpp
@@ -617,11 +617,11 @@ static int Log_AppendRTF(LOGSTREAMDATA* streamData, BOOL simpleMode, char **buff
 			d += 5;
 		} else if ((*line == '\\' || *line == '{' || *line == '}') && !streamData->bStripFormat) {
 			*d++ = '\\';
-			*d++ = (char)*line;
+			*d++ = (char) * line;
 		} else if (*line > 0 && *line < 128) {
-			*d++ = (char)*line;
+			*d++ = (char) * line;
 		}
-		else d += mir_snprintf(d, strlen(d), "\\u%u ?", (WORD)*line);
+		else d += sprintf(d, "\\u%u ?", (WORD) * line); //!!!!!!!!!
 	}
 
 	*cbBufferEnd = (int)(d - *buffer);
-- 
cgit v1.2.3