diff options
author | 2015-01-27 12:54:06 +0000 | |
---|---|---|
committer | 2015-01-27 12:54:06 +0000 | |
commit | 2a1693d17a467c5232528e5fb1b9c5576cc8b0f2 (patch) | |
tree | 48755621c6db63fe03ba692f01e203d16f5c3bb2 | |
parent | use printf instead of echo -n to reduce diff against -portable (diff) | |
download | wireguard-openbsd-2a1693d17a467c5232528e5fb1b9c5576cc8b0f2.tar.xz wireguard-openbsd-2a1693d17a467c5232528e5fb1b9c5576cc8b0f2.zip |
Since r1.2 removed the use of PRI* macros, inttypes.h is no longer
required.
ok djm@
-rw-r--r-- | usr.bin/ssh/roaming_client.c | 3 | ||||
-rw-r--r-- | usr.bin/ssh/roaming_common.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/ssh/roaming_client.c b/usr.bin/ssh/roaming_client.c index bf4361b842d..49e74ebea3f 100644 --- a/usr.bin/ssh/roaming_client.c +++ b/usr.bin/ssh/roaming_client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roaming_client.c,v 1.8 2014/04/29 18:01:49 markus Exp $ */ +/* $OpenBSD: roaming_client.c,v 1.9 2015/01/27 12:54:06 okan Exp $ */ /* * Copyright (c) 2004-2009 AppGate Network Security AB * @@ -19,7 +19,6 @@ #include <sys/types.h> #include <sys/socket.h> -#include <inttypes.h> #include <signal.h> #include <string.h> #include <unistd.h> diff --git a/usr.bin/ssh/roaming_common.c b/usr.bin/ssh/roaming_common.c index 660a69e8a48..5abfc60db17 100644 --- a/usr.bin/ssh/roaming_common.c +++ b/usr.bin/ssh/roaming_common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roaming_common.c,v 1.12 2014/01/09 23:20:00 djm Exp $ */ +/* $OpenBSD: roaming_common.c,v 1.13 2015/01/27 12:54:06 okan Exp $ */ /* * Copyright (c) 2004-2009 AppGate Network Security AB * @@ -20,7 +20,6 @@ #include <sys/uio.h> #include <errno.h> -#include <inttypes.h> #include <stdarg.h> #include <string.h> #include <unistd.h> |