whitespace fixes (leading spaces to tab)

This commit is contained in:
Denis Vlasenko
2007-01-13 21:06:21 +00:00
parent 2418288cac
commit 150f402b36
11 changed files with 13 additions and 13 deletions

View File

@@ -72,7 +72,7 @@ int chown_main(int argc, char **argv)
*groupName = ':'; /* replace '.' with ':' */
/* First, try parsing "user[:[group]]" */
if (!groupName) { /* "user" */
if (!groupName) { /* "user" */
ugid.uid = get_ug_id(*argv, xuname2uid);
} else if (groupName == *argv) { /* ":group" */
ugid.gid = get_ug_id(groupName + 1, xgroup2gid);

View File

@@ -86,7 +86,7 @@ int install_main(int argc, char **argv)
break;
}
}
if ((flags & (OPT_OWNER|OPT_GROUP))
if ((flags & (OPT_OWNER|OPT_GROUP))
&& lchown(*argv, uid, gid) == -1
) {
bb_perror_msg("cannot change ownership of %s", *argv);