diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-30 00:11:20 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-30 00:11:20 +0000 |
commit | 504ecd5f7a47185c503d263dae1ff8d75b1a892d (patch) | |
tree | 5ff9f985d2b2e1a042f3d5da80478cf6eed1c386 /ares | |
parent | 7d1bb21c191fea7c9e02d78e820a8df1b9ac65d3 (diff) |
NetWare LibC's getpeername() third argument data type is size_t
Diffstat (limited to 'ares')
-rw-r--r-- | ares/Makefile.netware | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ares/Makefile.netware b/ares/Makefile.netware index 110651526..89fdf4c75 100644 --- a/ares/Makefile.netware +++ b/ares/Makefile.netware @@ -425,7 +425,7 @@ ifeq ($(LIBARCH),CLIB) @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T int$(DL) >> $@ @echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@ else - @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T socklen_t$(DL) >> $@ + @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T size_t$(DL) >> $@ @echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@ endif @echo $(DL)#define CARES_SIZEOF_LONG 4$(DL) >> $@ |