diff options
Diffstat (limited to 'Bus/Ivy/Ivy.cxx')
-rw-r--r-- | Bus/Ivy/Ivy.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Bus/Ivy/Ivy.cxx b/Bus/Ivy/Ivy.cxx index e7505d1..7cd8dde 100644 --- a/Bus/Ivy/Ivy.cxx +++ b/Bus/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;
|