diff options
author | Darren Tucker <dtucker@zip.com.au> | 2008-02-25 20:21:20 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2008-02-25 20:21:20 +1100 |
commit | 2c2ac033c15714c8759a307b4a15963dbee83c58 (patch) | |
tree | e6e6ddba743c33124ae2861c512bddcb49f78ca1 /openbsd-compat | |
parent | 2e9b8db4ea096095e6fffc72d7984ad13fee1140 (diff) | |
download | openssh-git-2c2ac033c15714c8759a307b4a15963dbee83c58.tar.gz |
- (dtucker) [openbsd-compat/fake-rfc2553.h] rename ssh_gai_strerror hack
since it now conflicts with the helper function in misc.c. From
vinschen AT redhat.com.
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/fake-rfc2553.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/fake-rfc2553.h b/openbsd-compat/fake-rfc2553.h index 5c2ce5b1..ab9a2af6 100644 --- a/openbsd-compat/fake-rfc2553.h +++ b/openbsd-compat/fake-rfc2553.h @@ -1,4 +1,4 @@ -/* $Id: fake-rfc2553.h,v 1.13 2006/07/24 03:51:52 djm Exp $ */ +/* $Id: fake-rfc2553.h,v 1.14 2008/02/25 09:21:20 dtucker Exp $ */ /* * Copyright (C) 2000-2003 Damien Miller. All rights reserved. @@ -152,7 +152,7 @@ int getaddrinfo(const char *, const char *, #endif /* !HAVE_GETADDRINFO */ #if !defined(HAVE_GAI_STRERROR) && !defined(HAVE_CONST_GAI_STRERROR_PROTO) -#define gai_strerror(a) (ssh_gai_strerror(a)) +#define gai_strerror(a) (_ssh_compat_gai_strerror(a)) char *gai_strerror(int); #endif /* !HAVE_GAI_STRERROR */ |