From 778c2eee4276d3b48a83b3d80320a61f39ea8d83 Mon Sep 17 00:00:00 2001 From: brooks Date: Thu, 30 Oct 2003 23:00:15 +0000 Subject: style: strcmp() does not return a bool. --- sys/alpha/osf1/osf1_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/alpha') diff --git a/sys/alpha/osf1/osf1_ioctl.c b/sys/alpha/osf1/osf1_ioctl.c index cfc826e..88892a4 100644 --- a/sys/alpha/osf1/osf1_ioctl.c +++ b/sys/alpha/osf1/osf1_ioctl.c @@ -207,7 +207,7 @@ osf1_ioctl_i(td, uap, cmd, dir, len) * because osf/1 doesn't know about most of them. */ if (ifp->if_type == IFT_ETHER - && strcmp(ifp->if_name, "ti")) { /* looks good */ + && strcmp(ifp->if_name, "ti") != 0) { /* looks good */ /* walk the address list */ TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { if ((sdl = (struct sockaddr_dl *)ifa->ifa_addr) /* we have an address structure */ -- cgit v1.1