*** empty log message ***

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5431 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-04-06 21:12:32 +00:00
parent a7230de79a
commit d254db31c8
7 changed files with 25 additions and 6 deletions

View File

@@ -150,8 +150,8 @@ static int gethostbyname_r (const char *name, struct hostent *ret, char *buf,
#endif
/* Recursive thread safe version of gethostbyname that replaces the
standard gethostbyname (which is not recursive)
/* Re-entrant (thread safe) version of gethostbyname that replaces the
standard gethostbyname (which is not thread safe)
*/
struct hostent *ast_gethostbyname(const char *host, struct ast_hostent *hp)
{
@@ -457,4 +457,4 @@ char *ast_strcasestr(const char *haystack, const char *needle)
return NULL;
}
}
#endif
#endif /* LINUX */