summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2020-04-05 19:25:46 +0000
committerKyle Evans <kevans@FreeBSD.org>2020-04-05 19:25:46 +0000
commitba081586ea29116ae7f8c195a8bb01527ef729b7 (patch)
tree6d383272f8462bd139b7ec4d567c73518fb7d7da
parenta4ba6edfe75c4ed6cc70fdff9a7c22b2e49a8129 (diff)
downloadpw-darwin-ba081586ea29116ae7f8c195a8bb01527ef729b7.tar.gz
pw-darwin-ba081586ea29116ae7f8c195a8bb01527ef729b7.tar.zst
pw-darwin-ba081586ea29116ae7f8c195a8bb01527ef729b7.zip
adduser: allow standard IFS characters in passwords
Notably, the default IFS contains space/tab, thus any leading/trailing whitespace characters tend to be removed. Set IFS= for just the read lines to mitigate this, allowing the user to be less surprised when their leading/trailing spaces weren't actually captured in the password as they are with other means of setting a user's password. PR: 245342 Submitted by: dereks_lifeofadishwasher.com Reviewed by: jilles MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D24292
-rw-r--r--adduser/adduser.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/adduser/adduser.sh b/adduser/adduser.sh
index 5f80d77..91a1b4b 100644
--- a/adduser/adduser.sh
+++ b/adduser/adduser.sh
@@ -733,10 +733,10 @@ input_interactive() {
trap 'stty echo; exit' 0 1 2 3 15
stty -echo
echo -n "Enter password: "
- read -r upass
+ IFS= read -r upass
echo''
echo -n "Enter password again: "
- read -r _passconfirm
+ IFS= read -r _passconfirm
echo ''
stty echo
# if user entered a blank password