diff options
author | millert@openbsd.org <millert@openbsd.org> | 2015-02-05 12:59:57 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-02-07 07:48:00 +1100 |
commit | 1910a286d7771eab84c0b047f31c0a17505236fa (patch) | |
tree | 493644f399caf03d98f0fed1efdc25b5a083d839 /sshbuf-misc.c | |
parent | ce4f59b2405845584f45e0b3214760eb0008c06c (diff) |
upstream commit
Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@
Diffstat (limited to 'sshbuf-misc.c')
-rw-r--r-- | sshbuf-misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sshbuf-misc.c b/sshbuf-misc.c index bfeffe674..e07e34a8a 100644 --- a/sshbuf-misc.c +++ b/sshbuf-misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshbuf-misc.c,v 1.2 2014/06/24 01:13:21 djm Exp $ */ | 1 | /* $OpenBSD: sshbuf-misc.c,v 1.3 2015/02/05 12:59:57 millert Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2011 Damien Miller | 3 | * Copyright (c) 2011 Damien Miller |
4 | * | 4 | * |
@@ -22,6 +22,7 @@ | |||
22 | #include <netinet/in.h> | 22 | #include <netinet/in.h> |
23 | #include <errno.h> | 23 | #include <errno.h> |
24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
25 | #include <stdint.h> | ||
25 | #include <stdio.h> | 26 | #include <stdio.h> |
26 | #include <limits.h> | 27 | #include <limits.h> |
27 | #include <string.h> | 28 | #include <string.h> |