diff options
author | Denys Vlasenko | 2016-12-23 13:40:24 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-01 13:01:04 +0100 |
commit | 048c043ae64183967505b6fddd5b68663bdf6c40 (patch) | |
tree | 2398a1b6d884dd4a60a5eac2757f9c1d379dea62 | |
parent | f2200af1a8ca47777bff36ed2bd31047aff01a06 (diff) | |
download | busybox-048c043ae64183967505b6fddd5b68663bdf6c40.zip busybox-048c043ae64183967505b6fddd5b68663bdf6c40.tar.gz |
Make FEATURE_USERNAME_COMPLETION=y by default
This matches bash behavior on Fedora
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/Config.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/Config.src b/libbb/Config.src index 00804e3..172fbcc 100644 --- a/libbb/Config.src +++ b/libbb/Config.src @@ -152,7 +152,7 @@ config FEATURE_TAB_COMPLETION config FEATURE_USERNAME_COMPLETION bool "Username completion" - default n + default y depends on FEATURE_TAB_COMPLETION help Enable username completion. |