1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- libunix.a now also holds stdlib_main.o, which should fix the issue with

the wildcard pattern expansion functions not getting included.

- Replacing "int" with "socklen_t" in the header files caused compilation
  errors with the source code which wasn't using the new typedef yet. Fixed.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14985 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-06-20 07:43:59 +00:00
parent bf0a6e0c43
commit ea09fc96db
11 changed files with 22 additions and 20 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: socket_gethostbyaddr.c,v 1.3 2005-02-03 16:56:15 obarthel Exp $
* $Id: socket_gethostbyaddr.c,v 1.4 2005-06-20 07:43:59 obarthel Exp $
*
* :ts=4
*
@ -48,7 +48,7 @@
/****************************************************************************/
struct hostent *
gethostbyaddr(const char *addr, int len, int type)
gethostbyaddr(const char *addr, socklen_t len, int type)
{
struct hostent *result = NULL;