# HG changeset patch # User Rob Landley # Date 1331088507 21600 # Node ID 878b94b32866339ae22784a2af3c6a519a93197c # Parent a3116cb7ba1e547d7323e50cd334310147a099ce Comment and whitespace tweaks. diff -r a3116cb7ba1e -r 878b94b32866 scripts/make.sh --- a/scripts/make.sh Mon Mar 05 23:15:50 2012 -0600 +++ b/scripts/make.sh Tue Mar 06 20:48:27 2012 -0600 @@ -7,7 +7,7 @@ echo "Extract configuration information from toys/*.c files..." scripts/genconfig.sh -echo "Generate headers from toys/*.h..." +echo "Generate headers from toys/*.c..." # Create a list of all the applets toybox can provide. Note that the first # entry is out of order on purpose (the toybox multiplexer applet must be the diff -r a3116cb7ba1e -r 878b94b32866 toys/cp.c --- a/toys/cp.c Mon Mar 05 23:15:50 2012 -0600 +++ b/toys/cp.c Tue Mar 06 20:48:27 2012 -0600 @@ -180,7 +180,7 @@ char *src = toys.optargs[i]; char *dst; - // Skip src==dest (should check inodes to catch "cp blah ./blah"). + // Skip src==dest (TODO check inodes to catch "cp blah ./blah"). if (!strcmp(src, TT.destname)) continue; diff -r a3116cb7ba1e -r 878b94b32866 toys/free.c --- a/toys/free.c Mon Mar 05 23:15:50 2012 -0600 +++ b/toys/free.c Tue Mar 06 20:48:27 2012 -0600 @@ -16,6 +16,7 @@ Display the total, free and used amount of physical memory and swap space. + -bkmg Output in bytes (default), KB, MB or GB */ diff -r a3116cb7ba1e -r 878b94b32866 toys/setsid.c --- a/toys/setsid.c Mon Mar 05 23:15:50 2012 -0600 +++ b/toys/setsid.c Tue Mar 06 20:48:27 2012 -0600 @@ -4,8 +4,7 @@ * * Copyright 2006 Rob Landley * - * Not in SUSv3. - * See http://www.opengroup.org/onlinepubs/009695399/utilities/ + * Not in SUSv4. USE_SETSID(NEWTOY(setsid, "^<1t", TOYFLAG_USR|TOYFLAG_BIN)) diff -r a3116cb7ba1e -r 878b94b32866 toys/whoami.c --- a/toys/whoami.c Mon Mar 05 23:15:50 2012 -0600 +++ b/toys/whoami.c Tue Mar 06 20:48:27 2012 -0600 @@ -13,7 +13,7 @@ help usage: whoami - Print effective user id. + Print effective user name. */ #include "toys.h"