summaryrefslogtreecommitdiff
path: root/Ivy/Ivy.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy/Ivy.cxx')
-rw-r--r--Ivy/Ivy.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ivy/Ivy.cxx b/Ivy/Ivy.cxx
index e7505d1..7cd8dde 100644
--- a/Ivy/Ivy.cxx
+++ b/Ivy/Ivy.cxx
@@ -2,7 +2,7 @@
//
//////////////////////////////////////////////////////////////////////
-#include "stdafx.h"
+#include "IvyStdAfx.h"
#include "Ivy.h"
@@ -148,7 +148,7 @@ int Ivy::BindMsg( IvyMessageCallback *cb, const char *regexp, ... )
va_list args;
va_start( args, regexp ); /* Initialize variable arguments. */
- vsprintf( buffer, regexp, args );
+ _vsnprintf( buffer, sizeof(buffer), regexp, args );
va_end( args);
regexp_out.push_back( regexp );
@@ -243,7 +243,7 @@ int Ivy::SendMsg(const char * message, ... )
va_list args;
va_start( args, message ); /* Initialize variable arguments. */
- vsprintf( buffer, message, args );
+ _vsnprintf( buffer, sizeof(buffer), message, args );
va_end( args);
/* send to already connected */
IvyApplicationList::iterator iter;