From: Simon Ruderich Date: Tue, 4 Jun 2013 23:07:47 +0000 (+0200) Subject: Minor documentation updates. X-Git-Tag: 0.1~111 X-Git-Url: https://ruderich.org/simon/gitweb/?p=coloredstderr%2Fcoloredstderr.git;a=commitdiff_plain;h=a9db9083b6fd9c1bd6a09df6d64386d806488f7c Minor documentation updates. --- diff --git a/src/coloredstderr.c b/src/coloredstderr.c index 63c4a61..a55ce38 100644 --- a/src/coloredstderr.c +++ b/src/coloredstderr.c @@ -206,7 +206,7 @@ HOOK_FILE2(int, vprintf, stdout, const char *, format, va_list, ap) HOOK_FILE3(int, vfprintf, stream, FILE *, stream, const char *, format, va_list, ap) -/* Hardening functions (-D_FORTIFY_SOURCE=2). */ +/* Hardening functions (-D_FORTIFY_SOURCE=2), only functions from above */ HOOK_VAR_FILE2(int, __printf_chk, stdout, __vprintf_chk, int, flag, const char *, format) HOOK_VAR_FILE3(int, __fprintf_chk, fp, __vfprintf_chk, @@ -302,6 +302,7 @@ int fcntl(int fd, int cmd, ...) { va_start(ap, cmd); result = real_fcntl(fd, cmd, va_arg(ap, void *)); va_end(ap); + /* We only care about duping fds. */ if (cmd == F_DUPFD && result != -1) { int saved_errno = errno; diff --git a/src/trackfds.h b/src/trackfds.h index 34f0b1d..4760938 100644 --- a/src/trackfds.h +++ b/src/trackfds.h @@ -138,7 +138,7 @@ static void update_environment(void) { for (i = 0; i < tracked_fds_count; i++) { int length = snprintf(x, 10 + 1, "%d", tracked_fds[i]); if (length >= 10 + 1) { - /* Integer too bit to fit the buffer, skip it. */ + /* Integer too big to fit the buffer, skip it. */ continue; }