diff options
author | dteske <dteske@FreeBSD.org> | 2014-03-07 20:15:08 +0000 |
---|---|---|
committer | dteske <dteske@FreeBSD.org> | 2014-03-07 20:15:08 +0000 |
commit | 5cb44b665e8dc2cbeed44ea7f2a14afe659c9c6f (patch) | |
tree | 4718bf0bbc55daf3f6df1d3b64d27e392c9d264f /usr.sbin/bsdconfig | |
parent | fa3a5f9350058062c93858db3317a916462f3a3f (diff) | |
download | FreeBSD-src-5cb44b665e8dc2cbeed44ea7f2a14afe659c9c6f.zip FreeBSD-src-5cb44b665e8dc2cbeed44ea7f2a14afe659c9c6f.tar.gz |
Add missing local declaration.
Diffstat (limited to 'usr.sbin/bsdconfig')
-rw-r--r-- | usr.sbin/bsdconfig/share/common.subr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bsdconfig/share/common.subr b/usr.sbin/bsdconfig/share/common.subr index 94b5cfd..2c5dde3 100644 --- a/usr.sbin/bsdconfig/share/common.subr +++ b/usr.sbin/bsdconfig/share/common.subr @@ -1,7 +1,7 @@ if [ ! "$_COMMON_SUBR" ]; then _COMMON_SUBR=1 # # Copyright (c) 2012 Ron McDowell -# Copyright (c) 2012-2013 Devin Teske +# Copyright (c) 2012-2014 Devin Teske # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -153,7 +153,7 @@ f_debug_init() # Process stored command-line arguments # set -- $ARGV - local OPTIND + local OPTIND flag f_dprintf "f_debug_init: ARGV=[%s] GETOPTS_STDARGS=[%s]" \ "$ARGV" "$GETOPTS_STDARGS" while getopts "$GETOPTS_STDARGS$GETOPTS_EXTRA$GETOPTS_ALLFLAGS" flag \ |