diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-08-08 22:39:54 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-08-08 23:21:35 -0700 |
commit | 1ed63b5d0630a4b5b4a8d31174d9f3e95a970913 (patch) | |
tree | 47373d65dd7495380858f848fda5368d1dcb180c /print-telnet.c | |
parent | dfcccf43766e22aec8793b0a3f963d5ec5a52b80 (diff) | |
download | tcpdump-1ed63b5d0630a4b5b4a8d31174d9f3e95a970913.tar.gz |
Remove more old-compiler compensation.
We require an environment with a C99-compatible snprintf(), so we don't
need to work around older implementations. Make the configuration
process fail if we don't have snprintf() and vsnprintf().
We require at least VS 2015, so we don't have to check for _MSC_VER >=
1400. Make the build fail if we don't have at least VS 2015.
We apparently do, however, have to use __inline, as the VS 2015
documentation doesn't meaning plain old "inline". Update a comment.
Diffstat (limited to 'print-telnet.c')
-rw-r--r-- | print-telnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-telnet.c b/print-telnet.c index f2ff1389..8dd5f2d6 100644 --- a/print-telnet.c +++ b/print-telnet.c @@ -381,7 +381,7 @@ numstr(int x) { static char buf[20]; - nd_snprintf(buf, sizeof(buf), "%#x", x); + snprintf(buf, sizeof(buf), "%#x", x); return buf; } |