summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-07 11:47:26 +0100
committerColin Watson <cjwatson@debian.org>2013-05-07 11:47:26 +0100
commit2ea3f720daeb1ca9f765365fce3a9546961fe624 (patch)
treec4fb7d1f51fa51e7677232de806aae150e29e2ac /defines.h
parentf5efcd3450bbf8261915e0c4a6f851229dddaa79 (diff)
parentecebda56da46a03dafff923d91c382f31faa9eec (diff)
* New upstream release (http://www.openssh.com/txt/release-6.2).
- Add support for multiple required authentication in SSH protocol 2 via an AuthenticationMethods option (closes: #195716). - Fix Sophie Germain formula in moduli(5) (closes: #698612). - Update ssh-copy-id to Phil Hands' greatly revised version (closes: #99785, #322228, #620428; LP: #518883, #835901, #1074798).
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/defines.h b/defines.h
index 53f83a142..64515c2ff 100644
--- a/defines.h
+++ b/defines.h
@@ -25,7 +25,7 @@
25#ifndef _DEFINES_H 25#ifndef _DEFINES_H
26#define _DEFINES_H 26#define _DEFINES_H
27 27
28/* $Id: defines.h,v 1.169 2012/02/15 04:13:06 tim Exp $ */ 28/* $Id: defines.h,v 1.171 2013/03/07 09:06:13 dtucker Exp $ */
29 29
30 30
31/* Constants */ 31/* Constants */
@@ -227,11 +227,7 @@ typedef uint16_t u_int16_t;
227typedef uint32_t u_int32_t; 227typedef uint32_t u_int32_t;
228# define HAVE_U_INTXX_T 1 228# define HAVE_U_INTXX_T 1
229# else 229# else
230# if (SIZEOF_CHAR == 1)
231typedef unsigned char u_int8_t; 230typedef unsigned char u_int8_t;
232# else
233# error "8 bit int type not found."
234# endif
235# if (SIZEOF_SHORT_INT == 2) 231# if (SIZEOF_SHORT_INT == 2)
236typedef unsigned short int u_int16_t; 232typedef unsigned short int u_int16_t;
237# else 233# else
@@ -283,6 +279,10 @@ typedef unsigned char u_char;
283# define HAVE_U_CHAR 279# define HAVE_U_CHAR
284#endif /* HAVE_U_CHAR */ 280#endif /* HAVE_U_CHAR */
285 281
282#ifndef ULLONG_MAX
283# define ULLONG_MAX ((unsigned long long)-1)
284#endif
285
286#ifndef SIZE_T_MAX 286#ifndef SIZE_T_MAX
287#define SIZE_T_MAX ULONG_MAX 287#define SIZE_T_MAX ULONG_MAX
288#endif /* SIZE_T_MAX */ 288#endif /* SIZE_T_MAX */