]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/sys-linux.c
From Marco D'Itri: fix for an earlier patch from him.
[ppp.git] / pppd / sys-linux.c
index e963c79786097d2957ac65b6ca2323d58edd44de..05158e3d2fcba59d22499df92739161093b2bd27 100644 (file)
@@ -2808,8 +2808,8 @@ sys_check_options(void)
 
     if (ipxcp_protent.enabled_flag) {
        struct stat stat_buf;
-       if ((path = path_to_procfs("/net/ipx/interface")) == 0
-           || (path = path_to_procfs("/net/ipx_interface")) == 0
+       if (  ((path = path_to_procfs("/net/ipx/interface")) == NULL
+           && (path = path_to_procfs("/net/ipx_interface")) == NULL)
            || lstat(path, &stat_buf) < 0) {
            error("IPX support is not present in the kernel\n");
            ipxcp_protent.enabled_flag = 0;