diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-19 23:15:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-19 23:15:26 +0000 |
commit | a7d6c8bab919e1a537f8b7db7b8676484e60f550 (patch) | |
tree | fd5d442775f7551b76d22563816d30b4fc6a6029 /libbb | |
parent | cf7cf622046b0e1a2817e1da4aa8bc6f513b0153 (diff) | |
download | busybox-a7d6c8bab919e1a537f8b7db7b8676484e60f550.tar.gz |
adduser/addgroup: check username for invalid chars
(by Tito <farmatito AT tiscali.it>). +129 bytes when enabled.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/Kbuild b/libbb/Kbuild index 654722cd6..5740d9247 100644 --- a/libbb/Kbuild +++ b/libbb/Kbuild @@ -122,6 +122,7 @@ lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o lib-$(CONFIG_SELINUX) += selinux_common.o lib-$(CONFIG_HWCLOCK) += rtc.o lib-$(CONFIG_RTCWAKE) += rtc.o +lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o # We shouldn't build xregcomp.c if we don't need it - this ensures we don't # require regex.h to be in the include dir even if we don't need it thereby |