Revert "use _strnicmp (ISO C++) instead of deprecated strnicmp (POSIX) and add missing "#define strncasecmp _strnicmp" in init.cpp"

This reverts commit f4ac41806a.

Reason: breaks build.
This commit is contained in:
Jeff Garzik 2012-05-17 20:14:24 -04:00 committed by Jeff Garzik
parent c0a360ce49
commit f9dd136a09
2 changed files with 4 additions and 5 deletions

View file

@ -16,7 +16,6 @@
#ifndef WIN32 #ifndef WIN32
#include <signal.h> #include <signal.h>
#define strncasecmp _strnicmp
#endif #endif
using namespace std; using namespace std;
@ -163,6 +162,7 @@ bool static InitError(const std::string &str)
{ {
ThreadSafeMessageBox(str, _("Bitcoin"), wxOK | wxMODAL); ThreadSafeMessageBox(str, _("Bitcoin"), wxOK | wxMODAL);
return false; return false;
} }
bool static InitWarning(const std::string &str) bool static InitWarning(const std::string &str)

View file

@ -33,10 +33,6 @@ Q_IMPORT_PLUGIN(qkrcodecs)
Q_IMPORT_PLUGIN(qtaccessiblewidgets) Q_IMPORT_PLUGIN(qtaccessiblewidgets)
#endif #endif
#ifdef WIN32
#define strncasecmp _strnicmp
#endif
// Need a global reference for the notifications to find the GUI // Need a global reference for the notifications to find the GUI
static BitcoinGUI *guiref; static BitcoinGUI *guiref;
static QSplashScreen *splashref; static QSplashScreen *splashref;
@ -181,6 +177,9 @@ void HelpMessageBox::exec()
#endif #endif
} }
#ifdef WIN32
#define strncasecmp strnicmp
#endif
#ifndef BITCOIN_QT_TEST #ifndef BITCOIN_QT_TEST
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {