Tweak/add some comments.

This commit is contained in:
Rob Landley 2018-07-19 23:27:14 -05:00
parent 701d0d9328
commit 0c5577513f
4 changed files with 7 additions and 5 deletions

View File

@ -117,7 +117,7 @@ int crunch_str(char **str, int width, FILE *out, char *escmore,
}
// standard escapes: ^X if <32, <XX> if invliad UTF8, U+XXXX if UTF8 !iswprint()
// standard escapes: ^X if <32, <XX> if invalid UTF8, U+XXXX if UTF8 !iswprint()
int crunch_escape(FILE *out, int cols, int wc)
{
char buf[8];

View File

@ -103,7 +103,7 @@ int pollinate(int in1, int in2, int out1, int out2, int timeout, int shutdown_ti
}
}
// Return converted numeric address in libbuf
// Return converted ipv4/ipv6 numeric address in libbuf
char *ntop(struct sockaddr *sa)
{
void *addr;

View File

@ -6,6 +6,8 @@
// Flags describing command behavior.
// Where to install (toybox --long outputs absolute paths to commands)
// If no location bits set, command not listed in "toybox" command's output.
#define TOYFLAG_USR (1<<0)
#define TOYFLAG_BIN (1<<1)
#define TOYFLAG_SBIN (1<<2)
@ -18,8 +20,8 @@
#define TOYFLAG_UMASK (1<<5)
// This command runs as root.
#define TOYFLAG_STAYROOT (1<<6)
#define TOYFLAG_NEEDROOT (1<<7)
#define TOYFLAG_STAYROOT (1<<6) // Don't drop suid root before running cmd_main
#define TOYFLAG_NEEDROOT (1<<7) // Refuse to run if real uid != 0
#define TOYFLAG_ROOTONLY (TOYFLAG_STAYROOT|TOYFLAG_NEEDROOT)
// Call setlocale to listen to environment variables.

View File

@ -108,7 +108,7 @@ void netcat_main(void)
set_alarm(TT.wait);
// The argument parsing logic can't make "<2" conditional on other
// arguments like -f and -l, so we do it by hand here.
// arguments like -f and -l, so do it by hand here.
if ((toys.optflags&FLAG_f) ? toys.optc :
(!(toys.optflags&(FLAG_l|FLAG_L)) && toys.optc!=2))
help_exit("bad argument count");