changeset 1666:10922d83392a draft

Remove trailing whitespace.
author Rob Landley <rob@landley.net>
date Sun, 18 Jan 2015 14:06:14 -0600
parents 5d003cc2fa16
children aa6487c2c5f8
files lib/args.c lib/lib.c lib/password.c lib/xwrap.c main.c
diffstat 5 files changed, 8 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- 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;
   }
 
--- 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")){
--- 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);
--- 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]);
   }