]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - net_main.c
This is a patch from Elric greatly cleaning up the filesystem portions of the engine...
[xonotic/darkplaces.git] / net_main.c
index 836d2d043331e75e97e21b6c7e9348bbd7895cdc..e29480a309fd629d4d4926521ffb2c4dd2ae7b51 100644 (file)
@@ -525,7 +525,7 @@ qsocket_t *NET_Connect (char *host)
 
        if (host)
        {
-               if (Q_strcasecmp (host, "local") == 0)
+               if (strcasecmp (host, "local") == 0)
                {
                        net_driverlevel = 0;
                        return dfunc.Connect (host);
@@ -534,7 +534,7 @@ qsocket_t *NET_Connect (char *host)
                if (hostCacheCount)
                {
                        for (n = 0; n < hostCacheCount; n++)
-                               if (Q_strcasecmp (host, hostcache[n].name) == 0)
+                               if (strcasecmp (host, hostcache[n].name) == 0)
                                {
                                        host = hostcache[n].cname;
                                        break;
@@ -560,7 +560,7 @@ qsocket_t *NET_Connect (char *host)
 
        if (hostCacheCount)
                for (n = 0; n < hostCacheCount; n++)
-                       if (Q_strcasecmp (host, hostcache[n].name) == 0)
+                       if (strcasecmp (host, hostcache[n].name) == 0)
                        {
                                host = hostcache[n].cname;
                                break;