History log of /netbsd/usr.sbin/mtrace/mtrace.c (Results 1 – 25 of 42)
Revision Date Author Comments
# e4abc357 21-Oct-2021 andvar <andvar@NetBSD.org>

fix various typos, mainly in comments, but also in man pages and log messages.


# 78876854 03-Feb-2019 mrg <mrg@NetBSD.org>

- add or adjust /* FALLTHROUGH */ where appropriate
- add __unreachable() after functions that can return but won't in
this case, and thus can't be marked __dead easily


# 6e7065a8 13-Mar-2016 christos <christos@NetBSD.org>

PR/50966: David Binderman: Use all 3 of b, p, n to determine if route changed


# 5378b946 27-Feb-2014 joerg <joerg@NetBSD.org>

Don't use abs on unsigned values.


# 7f26fba0 31-Aug-2011 joerg <joerg@NetBSD.org>

Use __dead


# c83cfc0c 17-Apr-2009 lukem <lukem@NetBSD.org>

Fix WARNS=4 issues (-Wshadow -Wcast-qual -Wsign-compare)


# 0c37c63e 09-May-2006 mrg <mrg@NetBSD.org>

change (mostly) int to socklen_t. GCC 4 doesn't like that int and
socklen_t are different signness.


# 5d1e8b27 25-Feb-2006 wiz <wiz@NetBSD.org>

Fix some typos.


# 3ab2c084 30-Oct-2004 dsl <dsl@NetBSD.org>

Add (unsigned char) cast to ctype functions


# 9beba217 23-Sep-2003 itojun <itojun@NetBSD.org>

ignore non-AF_INET addrs. from openbsd


# e2c411ce 06-Sep-2003 itojun <itojun@NetBSD.org>

use arc4random


# cdf8146c 17-Aug-2003 itojun <itojun@NetBSD.org>

SIOCGIFCONF->getifaddrs conversion


# da0369cc 16-May-2003 dsl <dsl@NetBSD.org>

Match latest mrouted source.


# 761f7beb 16-May-2003 itojun <itojun@NetBSD.org>

avoid possible buffer overruns - strlcpy, snprintf


# 22c010e6 05-Mar-2003 wiz <wiz@NetBSD.org>

Update license, from OpenBSD.


# e6f08c9f 05-Mar-2003 wiz <wiz@NetBSD.org>

Move back here from gnu/dist/mtrace now that mrouted license is cleared.


# aae6c28c 23-Sep-2002 mycroft <mycroft@NetBSD.org>

null commit


# f46e9218 23-Sep-2002 itojun <itojun@NetBSD.org>

poll.h, not sys/poll.h


# 05abee23 19-Sep-2002 mycroft <mycroft@NetBSD.org>

select() -> poll(), nanosleep()


# 258ffca8 09-Aug-2002 itojun <itojun@NetBSD.org>

one more indentation fix


# 93a39a49 09-Aug-2002 itojun <itojun@NetBSD.org>

more consistent indentation


# 31f93ffa 09-Aug-2002 itojun <itojun@NetBSD.org>

revoke root priv earlier. check fd_set overrun (and die if overrun).
avoid using runtime-generated printf format string. from xs@kittenz.org


# e58b7d46 14-Jul-2002 wiz <wiz@NetBSD.org>

ANSIfy. Remove ifndef __STDC__. Remove __P().


# a3a7b3dc 02-Jun-2002 itojun <itojun@NetBSD.org>

missing memset() for sockaddr. from deraadt


# 4c999163 24-Sep-2001 wiz <wiz@NetBSD.org>

va_{start,end} audit:
Make sure that each va_start has one and only one matching va_end,
especially in error cases.
If the va_list is used multiple times, do multiple va_starts/va_ends.
If a function

va_{start,end} audit:
Make sure that each va_start has one and only one matching va_end,
especially in error cases.
If the va_list is used multiple times, do multiple va_starts/va_ends.
If a function gets va_list as argument, don't let it use va_end (since
it's the callers responsibility).

Improved by comments from enami and christos -- thanks!

Heimdal/krb4/KAME changes already fed back, rest to follow.

Inspired by, but not not based on, OpenBSD.

show more ...


12