usr.sbin/makefs/ffs: Remove m_buf::b_is_hammer2
[dragonfly.git] / sys / netproto / 802_11 / dofbsddiff
blob7d008ab0ffe0a81ee7f8e30007da54aa88cbaead
1 #!/bin/csh
4 if ( $# > 0 ) then
5 set dbase = "${argv[1]}/"
6 else
7 set dbase = "/archive/FreeBSD-current/sys/net80211"
8 endif
10 foreach i ( `find . -type f` )
11 set spath = "$i"
12 set name = "$i:t"
13 if ( "$name" == "Makefile" ) then
14 continue
15 endif
16 set dpath = `find $dbase -type f -name $name`
17 if ( "$dpath" == "" ) then
18 continue;
19 endif
20 diff -w -u $dpath $spath
21 end