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:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: socket_getsockname.c,v 1.5 2005-04-24 08:46:37 obarthel Exp $
|
||||
* $Id: socket_getsockname.c,v 1.6 2005-06-20 07:43:59 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -48,7 +48,7 @@
|
||||
/****************************************************************************/
|
||||
|
||||
int
|
||||
getsockname(int sockfd,struct sockaddr *name,int *namelen)
|
||||
getsockname(int sockfd,struct sockaddr *name,socklen_t *namelen)
|
||||
{
|
||||
struct fd * fd;
|
||||
int result = ERROR;
|
||||
|
||||
Reference in New Issue
Block a user