1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-21 07:15:49 +00:00

sh(1): -l is only valid in cli option not as set -l

This commit is contained in:
Baptiste Daroussin 2024-11-20 14:14:43 +01:00
parent bbe2a1da2d
commit 0df81552d7

View File

@ -194,7 +194,7 @@ options(int cmdline)
if (q == NULL || minusc != NULL)
error("Bad -c option");
minusc = q;
} else if (c == 'l') {
} else if (c == 'l' && cmdline) {
login = 1;
} else if (c == 'o') {
minus_o(*argptr, val);