auth: replace stricmp() with _stricmp()

Newer visual studios deprecate stricmp(). Replace it to fix compilation.
This commit is contained in:
Dmitry Podgorny
2020-01-07 00:24:57 +02:00
parent 2570084cae
commit 17f79cbbb8

View File

@@ -24,7 +24,7 @@
#include "rand.h"
#ifdef _MSC_VER
#define strcasecmp stricmp
#define strcasecmp _stricmp
#endif
/* TODO: these should configurable at runtime on a per connection basis */