summaryrefslogtreecommitdiff
path: root/openbsd-compat/fake-rfc2553.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-08-03 15:36:21 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-08-03 15:36:21 +1000
commit9825697d3cf75e262dc81f01f7f6bf1e234306d3 (patch)
tree801bff6978e5372225ae81dba02c43334de59248 /openbsd-compat/fake-rfc2553.h
parent212cfc4b4869fbbe5b038f7480e67d26f60f1545 (diff)
- (dtucker) [openbsd-compat/fake-rfc2553.h] MAX_INT -> INT_MAX since the
latter is specified in the standard.
Diffstat (limited to 'openbsd-compat/fake-rfc2553.h')
-rw-r--r--openbsd-compat/fake-rfc2553.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/openbsd-compat/fake-rfc2553.h b/openbsd-compat/fake-rfc2553.h
index 24a34d17a..cbcf7f727 100644
--- a/openbsd-compat/fake-rfc2553.h
+++ b/openbsd-compat/fake-rfc2553.h
@@ -1,4 +1,4 @@
1/* $Id: fake-rfc2553.h,v 1.11 2005/08/03 00:57:15 dtucker Exp $ */ 1/* $Id: fake-rfc2553.h,v 1.12 2005/08/03 05:36:21 dtucker Exp $ */
2 2
3/* 3/*
4 * Copyright (C) 2000-2003 Damien Miller. All rights reserved. 4 * Copyright (C) 2000-2003 Damien Miller. All rights reserved.
@@ -114,16 +114,16 @@ struct sockaddr_in6 {
114#endif /* !NI_MAXHOST */ 114#endif /* !NI_MAXHOST */
115 115
116#ifndef EAI_NODATA 116#ifndef EAI_NODATA
117# define EAI_NODATA (MAX_INT - 1) 117# define EAI_NODATA (INT_MAX - 1)
118#endif 118#endif
119#ifndef EAI_MEMORY 119#ifndef EAI_MEMORY
120# define EAI_MEMORY (MAX_INT - 2) 120# define EAI_MEMORY (INT_MAX - 2)
121#endif 121#endif
122#ifndef EAI_NONAME 122#ifndef EAI_NONAME
123# define EAI_NONAME (MAX_INT - 3) 123# define EAI_NONAME (INT_MAX - 3)
124#endif 124#endif
125#ifndef EAI_SYSTEM 125#ifndef EAI_SYSTEM
126# define EAI_SYSTEM (MAX_INT - 4) 126# define EAI_SYSTEM (INT_MAX - 4)
127#endif 127#endif
128 128
129#ifndef HAVE_STRUCT_ADDRINFO 129#ifndef HAVE_STRUCT_ADDRINFO