| commit 8ae190998e1aa32aa8903d541b7c0365934d4735 | Author: Andrew Cagney <[email protected]> | Date: Wed Sep 5 17:16:17 2018 -0400 | | bsd: sed -i -e 's/u_int\([0-9]*\)_t/uint\1_t/g' -e 's/u_int\([^0-9]\)/unsigned\1/g'
The pattern /\<u_int\>/ is more reliable and easier. I'd recommend this: sed -i -e 's/\<u_int\([0-9]*\)_t\>/uint\1_t/g' -e 's/\<u_int\>/unsigned/g' I don't imagine that there actually were problems created by the original formulation. _______________________________________________ Swan-dev mailing list [email protected] https://lists.libreswan.org/mailman/listinfo/swan-dev
