aboutsummaryrefslogtreecommitdiffstats
path: root/utils.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-06 21:12:32 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-06 21:12:32 +0000
commit382175ba279d995ad1a723621682ad1a7711c424 (patch)
tree1d3f457b8cb083d53a2df9c125360571ea9dd442 /utils.c
parente98507dd4f5dd23299abedea55e69221cc454760 (diff)
*** empty log message ***
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5431 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils.c')
-rwxr-xr-xutils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils.c b/utils.c
index 6d99111b1..b485fd3bb 100755
--- a/utils.c
+++ b/utils.c
@@ -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 */