svn commit: r232774 - stable/9/usr.sbin/wake

Jaakko Heinonen jh at FreeBSD.org
Sat Mar 10 08:25:50 UTC 2012


Author: jh
Date: Sat Mar 10 08:25:49 2012
New Revision: 232774
URL: http://svn.freebsd.org/changeset/base/232774

Log:
  MFC r232101: style(9).

Modified:
  stable/9/usr.sbin/wake/wake.c
Directory Properties:
  stable/9/usr.sbin/wake/   (props changed)

Modified: stable/9/usr.sbin/wake/wake.c
==============================================================================
--- stable/9/usr.sbin/wake/wake.c	Sat Mar 10 07:54:41 2012	(r232773)
+++ stable/9/usr.sbin/wake/wake.c	Sat Mar 10 08:25:49 2012	(r232774)
@@ -78,7 +78,7 @@ wake(int bpf, const char *host)
 	if (get_ether(host, &macaddr) == -1)
 		return (-1);
 
-	return send_wakeup(bpf, &macaddr);
+	return (send_wakeup(bpf, &macaddr));
 }
 
 static int
@@ -111,10 +111,10 @@ find_ether(char *dst, size_t len)
 	int nifs;
 
 	if (dst == NULL || len == 0)
-		return 0;
+		return (0);
 
 	if (getifaddrs(&ifap) != 0)
-		return -1;
+		return (-1);
 
 	/* XXX also check the link state */
 	for (nifs = 0, ifa = ifap; ifa; ifa = ifa->ifa_next)
@@ -128,7 +128,7 @@ find_ether(char *dst, size_t len)
 		}
 
 	freeifaddrs(ifap);
-	return nifs == 1 ? 0 : -1;
+	return (nifs == 1 ? 0 : -1);
 }
 
 static int


More information about the svn-src-all mailing list