Changeset c84e31a
- Timestamp:
- 2008-02-07T21:25:18Z (17 years ago)
- Branches:
- master
- Children:
- 7adc657
- Parents:
- 69ac78c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r69ac78c rc84e31a 74 74 75 75 if( getnameinfo( (struct sockaddr *) &sock, socklen, buf, 76 NI_MAXHOST, NULL, -1, 0 ) == 0 )76 NI_MAXHOST, NULL, 0, 0 ) == 0 ) 77 77 { 78 78 irc->myhost = g_strdup( ipv6_unwrap( buf ) ); … … 85 85 86 86 if( getnameinfo( (struct sockaddr *)&sock, socklen, buf, 87 NI_MAXHOST, NULL, -1, 0 ) == 0 )87 NI_MAXHOST, NULL, 0, 0 ) == 0 ) 88 88 { 89 89 irc->host = g_strdup( ipv6_unwrap( buf ) );
Note: See TracChangeset
for help on using the changeset viewer.