PERFORCE change 137266 for review

Robert Watson rwatson at FreeBSD.org
Sun Mar 9 21:21:14 UTC 2008


http://perforce.freebsd.org/chv.cgi?CH=137266

Change 137266 by rwatson at rwatson_cinnamon on 2008/03/09 21:20:50

	Revert two minor local style changes in the branch that weren't
	merged to CVS.

Affected files ...

.. //depot/projects/zcopybpf/src/sys/net/bpf_filter.c#7 edit

Differences ...

==== //depot/projects/zcopybpf/src/sys/net/bpf_filter.c#7 (text+ko) ====

@@ -115,12 +115,14 @@
 		    ((u_int32_t)np[0] << 16) |
 		    ((u_int32_t)np[1] << 8)  |
 		    (u_int32_t)np[2];
+
 	case 2:
 		return
 		    ((u_int32_t)cp[0] << 24) |
 		    ((u_int32_t)cp[1] << 16) |
 		    ((u_int32_t)np[0] << 8) |
 		    (u_int32_t)np[1];
+
 	default:
 		return
 		    ((u_int32_t)cp[0] << 24) |


More information about the p4-projects mailing list