Style: comments

MFC after:	3 days
X-MFC-to:	stable/10
This commit is contained in:
Devin Teske 2015-09-01 21:20:43 +00:00
parent 3d31973643
commit c1acb66e01
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287380

View File

@ -200,7 +200,7 @@ jail_depend()
#
# Perform sanity checks
#
[ $# -gt 0 ] || usage
[ $# -gt 0 ] || usage # NOTREACHED
#
# Check for `--help' and `--version' command-line option
@ -233,7 +233,7 @@ while getopts aAcdDef:Fhij:nNqR:vxX flag; do
e) SHOW_EQUALS=1 ;;
f) RC_CONFS="$RC_CONFS${RC_CONFS:+ }$OPTARG" ;;
F) SHOW_FILE=1 ;;
h) usage ;;
h) usage ;; # NOTREACHED
i) IGNORE_UNKNOWNS=1 ;;
j) [ "$OPTARG" ] || die \
"%s: Missing or null argument to \`-j' flag" "$pgm"
@ -247,7 +247,7 @@ while getopts aAcdDef:Fhij:nNqR:vxX flag; do
v) VERBOSE=1 QUIET= ;;
x) DELETE=${DELETE:-1} ;;
X) DELETE=2 ;;
\?) usage ;;
\?) usage ;; # NOTREACHED
esac
done
shift $(( $OPTIND - 1 ))
@ -255,7 +255,7 @@ shift $(( $OPTIND - 1 ))
#
# [More] Sanity checks (e.g., "sysrc --")
#
[ $# -eq 0 -a ! "$SHOW_ALL" ] && usage
[ $# -eq 0 -a ! "$SHOW_ALL" ] && usage # NOTREACHED
#
# Taint-check all rc.conf(5) files