Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Apr 2009 21:21:04 GMT
From:      Marko Zec <zec@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 161276 for review
Message-ID:  <200904282121.n3SLL4YR055030@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=161276

Change 161276 by zec@zec_tpx32 on 2009/04/28 21:20:30

	Remove unnecessary curly braces - diff redux against svn.

Affected files ...

.. //depot/projects/vimage-commit2/src/sys/net/bpf.c#15 edit

Differences ...

==== //depot/projects/vimage-commit2/src/sys/net/bpf.c#15 (text+ko) ====

@@ -1432,9 +1432,8 @@
 	struct ifnet *theywant;
 
 	theywant = ifunit(ifr->ifr_name);
-	if (theywant == NULL || theywant->if_bpf == NULL) {
+	if (theywant == NULL || theywant->if_bpf == NULL)
 		return (ENXIO);
-	}
 
 	bp = theywant->if_bpf;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904282121.n3SLL4YR055030>