id: fix inverted if (!ENABLE_DESKTOP)

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2011-01-26 16:11:19 +01:00
parent ffd81f2003
commit df7b6577c6
1 changed files with 2 additions and 3 deletions

View File

@ -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);