From 888407a108f5c7df2d98124c1a09dcbc4a246cd7 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Thu, 6 Oct 2005 22:52:03 +0000 Subject: [PATCH] Unicode compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/dialup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/dialup.cpp b/src/unix/dialup.cpp index ebd8d41fd8..b9f18e41df 100644 --- a/src/unix/dialup.cpp +++ b/src/unix/dialup.cpp @@ -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; -- 2.45.2