Opened 4 years ago
Closed 4 years ago
#43 closed defect (fixed)
VC9 inet_ntop
| Reported by: | sunside | Owned by: | vadim |
|---|---|---|---|
| Priority: | trivial | Milestone: | QuteCom 2.2-RC2 |
| Component: | 3rd party libs | Version: | 2.2-RC3 |
| Keywords: | vc9 | Cc: |
Description
inet_ntop() seems to be defined for VC9.0, so in oswl_address.c around line 186 the inet_ntop can be excluded. The following worked for me:
#if _MSC_VER <= 1400
static const char *
inet_ntop
(
int af,
const void * src,
char * dst,
size_t size
)
{
/* ... etc. ... */
}
#endif
Change History (1)
comment:1 Changed 4 years ago by vadim
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
