diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-10-29 01:25:26 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-10-29 01:25:26 (EDT) |
commit | 76c38249c9a40b41e3c9da7e53e1fca8568fd2de (patch) | |
tree | 084b803eb586b93d49b65bab4f3e7b0c1ad2a899 | |
parent | f177ea0832be4a535a0105afde82f28a7594ec06 (diff) | |
download | firman.sh-76c38249c9a40b41e3c9da7e53e1fca8568fd2de.zip firman.sh-76c38249c9a40b41e3c9da7e53e1fca8568fd2de.tar.gz firman.sh-76c38249c9a40b41e3c9da7e53e1fca8568fd2de.tar.bz2 |
ich9_prepare_rom(): Pass length to show_prompt()
-rw-r--r-- | src/board/ich9.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/board/ich9.sh b/src/board/ich9.sh index b0d7d4e..fa12944 100644 --- a/src/board/ich9.sh +++ b/src/board/ich9.sh @@ -24,7 +24,7 @@ ich9_prepare_rom() # Get MAC address. while :; do - mac="$(show_prompt 'Enter MAC address')" + mac="$(show_prompt 'Enter MAC address' 17)" case "${mac}" in *[!0-9a-zA-Z:]*) continue |