From 8cab66730aa59c121eb98b20f4ae7ddda1c3ecf6 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 20 Apr 2012 14:48:00 +0200 Subject: fix build breakage found by randconfig Signed-off-by: Denys Vlasenko --- libbb/Kbuild.src | 1 + 1 file changed, 1 insertion(+) (limited to 'libbb') diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src index 335b34128..61eec26f7 100644 --- a/libbb/Kbuild.src +++ b/libbb/Kbuild.src @@ -170,6 +170,7 @@ lib-$(CONFIG_PING) += inet_cksum.o lib-$(CONFIG_TRACEROUTE) += inet_cksum.o lib-$(CONFIG_TRACEROUTE6) += inet_cksum.o lib-$(CONFIG_UDHCPC) += inet_cksum.o +lib-$(CONFIG_UDHCPC6) += inet_cksum.o lib-$(CONFIG_UDHCPD) += inet_cksum.o # We shouldn't build xregcomp.c if we don't need it - this ensures we don't -- cgit v1.2.3-55-g6feb From 56443cdbdd23f7691df833d45f8c3468e07115bb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 20 Apr 2012 15:07:22 +0200 Subject: whitespace fixes Signed-off-by: Denys Vlasenko --- libbb/lineedit.c | 2 +- util-linux/mount.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'libbb') diff --git a/libbb/lineedit.c b/libbb/lineedit.c index 460e27fed..db8416712 100644 --- a/libbb/lineedit.c +++ b/libbb/lineedit.c @@ -2517,7 +2517,7 @@ int FAST_FUNC read_line_input(line_input_t *st, const char *prompt, char *comman switch (ic) { //case KEYCODE_LEFT: - bash doesn't do this case 'b': - ctrl_left(); + ctrl_left(); break; //case KEYCODE_RIGHT: - bash doesn't do this case 'f': diff --git a/util-linux/mount.c b/util-linux/mount.c index 807e89747..f1da30fac 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -1337,7 +1337,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) "udp\0" "lock\0" "rdirplus\0" - "acl\0"; + "acl\0"; int val = 1; if (!strncmp(opt, "no", 2)) { val = 0; @@ -1388,7 +1388,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) nordirplus = !val; break; case 12: // acl - noacl = !val; + noacl = !val; break; default: bb_error_msg("unknown nfs mount option: %s%s", val ? "" : "no", opt); @@ -1404,7 +1404,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts) | (nocto ? NFS_MOUNT_NOCTO : 0) | (noac ? NFS_MOUNT_NOAC : 0) | (nordirplus ? NFS_MOUNT_NORDIRPLUS : 0) - | (noacl ? NFS_MOUNT_NOACL : 0); + | (noacl ? NFS_MOUNT_NOACL : 0); if (nfs_mount_version >= 2) data.flags |= (tcp ? NFS_MOUNT_TCP : 0); if (nfs_mount_version >= 3) -- cgit v1.2.3-55-g6feb