]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicode compile fix
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Thu, 6 Oct 2005 22:52:03 +0000 (22:52 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Thu, 6 Oct 2005 22:52:03 +0000 (22:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/dialup.cpp

index ebd8d41fd8aed1c2b764d6e6d9b826dfea5a8d51..b9f18e41dfe3e21add7afac76e8e7e06defe23ee 100644 (file)
@@ -726,7 +726,7 @@ wxDialUpManagerImpl::CheckIfconfig()
                         || strstr(output.fn_str(),"pl"); // plip
                     hasLAN = strstr(output.fn_str(), "eth") != NULL;
 #elif defined(__SGI__)  // IRIX
-                    hasModem = strstr(output, "ppp") != NULL; // PPP
+                    hasModem = strstr(output.fn_str(), "ppp") != NULL; // PPP
 #elif defined(__HPUX__)
                     // if could run ifconfig on interface, then it exists
                     hasModem = true;