From: Samuel Martin Date: Wed, 4 Dec 2013 12:00:54 +0000 (+0100) Subject: support: fix typo in mkusers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f34b761e053dff82604f22111d1029e7d0812020;p=buildroot.git support: fix typo in mkusers This patch fixes typos in the 'encode_password' function calls. Signed-off-by: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/support/scripts/mkusers b/support/scripts/mkusers index 19aa085e10..3b287b8a9a 100755 --- a/support/scripts/mkusers +++ b/support/scripts/mkusers @@ -307,10 +307,10 @@ add_one_user() { esac case "${passwd}" in !=*) - _passwd='!'"$( encode_passwd "${passwd#!=}" )" + _passwd='!'"$( encode_password "${passwd#!=}" )" ;; =*) - _passwd="$( encode_passwd "${passwd#=}" )" + _passwd="$( encode_password "${passwd#=}" )" ;; *) _passwd="${passwd}"