From f4ac41806af5766199a7d526a7becbcb8a0f5ab3 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 17 May 2012 23:20:47 +0200 Subject: use _strnicmp (ISO C++) instead of deprecated strnicmp (POSIX) and add missing "#define strncasecmp _strnicmp" in init.cpp --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index b027a53d8..15eb883ac 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -16,6 +16,7 @@ #ifndef WIN32 #include +#define strncasecmp _strnicmp #endif using namespace std; @@ -162,7 +163,6 @@ bool static InitError(const std::string &str) { ThreadSafeMessageBox(str, _("Bitcoin"), wxOK | wxMODAL); return false; - } bool static InitWarning(const std::string &str) -- cgit v1.2.3