From df7b6577c6abaff551b15ccc80917553afde33fb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 26 Jan 2011 16:11:19 +0100 Subject: id: fix inverted if (!ENABLE_DESKTOP) Signed-off-by: Denys Vlasenko --- coreutils/id.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'coreutils') diff --git a/coreutils/id.c b/coreutils/id.c index ed1dc862e..0639325c3 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -176,10 +176,9 @@ int id_main(int argc UNUSED_PARAM, char **argv) prefix = ","; } } else if (n < 0) { /* error in get_groups() */ - if (!ENABLE_DESKTOP) + if (ENABLE_DESKTOP) bb_error_msg_and_die("can't get groups"); - else - return EXIT_FAILURE; + return EXIT_FAILURE; } if (ENABLE_FEATURE_CLEAN_UP) free(groups); -- cgit v1.2.3