diff options
author | Samuel Martin <s.martin49@gmail.com> | 2013-12-04 13:00:54 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-04 13:11:32 +0100 |
commit | f34b761e053dff82604f22111d1029e7d0812020 (patch) | |
tree | 5c65a15316392fa84733713c5202c7df376e886b /support | |
parent | c19308020bb8c7646dddb351f4070edc2dcbfe8f (diff) | |
download | buildroot-f34b761e053dff82604f22111d1029e7d0812020.tar.gz buildroot-f34b761e053dff82604f22111d1029e7d0812020.zip |
support: fix typo in mkusers
This patch fixes typos in the 'encode_password' function calls.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'support')
-rwxr-xr-x | support/scripts/mkusers | 4 |
1 files changed, 2 insertions, 2 deletions
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}" |