# HG changeset patch # User Rob Landley # Date 1421611574 21600 # Node ID 10922d83392a445660c27bae291d11943e136041 # Parent 5d003cc2fa169e2699dff735704074432f73e8e7 Remove trailing whitespace. diff -r 5d003cc2fa16 -r 10922d83392a lib/args.c --- a/lib/args.c Sun Jan 18 13:44:24 2015 -0600 +++ b/lib/args.c Sun Jan 18 14:06:14 2015 -0600 @@ -82,7 +82,6 @@ // + Synonyms (switch on all) [+abc] means -ab=-abc, -c=-abc // ! More than one in group is error [!abc] means -ab calls error_exit() // primarily useful if you can switch things back off again. -// // Notes from getopt man page // - and -- cannot be arguments. diff -r 5d003cc2fa16 -r 10922d83392a lib/lib.c --- a/lib/lib.c Sun Jan 18 13:44:24 2015 -0600 +++ b/lib/lib.c Sun Jan 18 14:06:14 2015 -0600 @@ -155,7 +155,7 @@ if (!(flags&2) || errno != EEXIST) return 1; } else if (flags&4) fprintf(stderr, "%s: created directory '%s'\n", toys.which->name, dir); - + if (!(*s = save)) break; } diff -r 5d003cc2fa16 -r 10922d83392a lib/password.c --- a/lib/password.c Sun Jan 18 13:44:24 2015 -0600 +++ b/lib/password.c Sun Jan 18 14:06:14 2015 -0600 @@ -8,7 +8,7 @@ // generate appropriate random salt string for given encryption algorithm. int get_salt(char *salt, char *algo) -{ +{ struct { char *type, id, len; } al[] = {{"des", 0, 2}, {"md5", 1, 8}, {"sha256", 5, 16}, {"sha512", 6, 16}}; @@ -128,9 +128,9 @@ } /*update_password is used by multiple utilities to update /etc/passwd, - * /etc/shadow, /etc/group and /etc/gshadow files, + * /etc/shadow, /etc/group and /etc/gshadow files, * which are used as user, group databeses - * entry can be + * entry can be * 1. encrypted password, when updating user password. * 2. complete entry for user details, when creating new user * 3. group members comma',' separated list, when adding user to group @@ -197,7 +197,7 @@ current_ptr = get_nextcolon(current_ptr, 1); fprintf(newfp, "%s\n",current_ptr); } else fprintf(newfp, "%s\n",current_ptr); - } else if (!strcmp(toys.which->name, "groupadd") || + } else if (!strcmp(toys.which->name, "groupadd") || !strcmp(toys.which->name, "addgroup") || !strcmp(toys.which->name, "delgroup") || !strcmp(toys.which->name, "groupdel")){ diff -r 5d003cc2fa16 -r 10922d83392a lib/xwrap.c --- a/lib/xwrap.c Sun Jan 18 13:44:24 2015 -0600 +++ b/lib/xwrap.c Sun Jan 18 14:06:14 2015 -0600 @@ -349,7 +349,7 @@ // Cannonicalize path, even to file with one or more missing components at end. // if exact, require last path component to exist -char *xabspath(char *path, int exact) +char *xabspath(char *path, int exact) { struct string_list *todo, *done = 0; int try = 9999, dirfd = open("/", 0);; @@ -610,7 +610,7 @@ if (CFG_TOYBOX_FLOAT) d = strtod(arg, &arg); else l = strtoul(arg, &arg, 10); - + // Parse suffix if (*arg) { int ismhd[]={1,60,3600,86400}, i = stridx("smhd", *arg); diff -r 5d003cc2fa16 -r 10922d83392a main.c --- a/main.c Sun Jan 18 13:44:24 2015 -0600 +++ b/main.c Sun Jan 18 14:06:14 2015 -0600 @@ -152,7 +152,7 @@ toys.optc = toys.recursion = 0; toy_exec(toys.argv+1); if (toys.argv[1][0] == '-') goto list; - + error_exit("Unknown command %s",toys.argv[1]); }