diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-12-09 11:21:42 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-12-09 11:21:42 -0500 |
commit | 772dd528fcb727460f056ebb022d0090a206e4e4 (patch) | |
tree | 1e40df75ca001c49f612055ec957c827bd0222ac /WWW/Library/Implementation | |
parent | c80970d7ae24dd0eaecd59a024589bb8dbbac07f (diff) | |
download | lynx-snapshots-772dd528fcb727460f056ebb022d0090a206e4e4.tar.gz |
snapshot of project "lynx", label v2-8-8pre_1d
Diffstat (limited to 'WWW/Library/Implementation')
-rw-r--r-- | WWW/Library/Implementation/HTTCP.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/HTTCP.c b/WWW/Library/Implementation/HTTCP.c index 105dde85..226aab55 100644 --- a/WWW/Library/Implementation/HTTCP.c +++ b/WWW/Library/Implementation/HTTCP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTTCP.c,v 1.128 2013/11/28 11:14:59 tom Exp $ + * $LynxId: HTTCP.c,v 1.129 2013/12/07 15:36:55 tom Exp $ * * Generic Communication Code HTTCP.c * ========================== @@ -1486,12 +1486,12 @@ static size_t fill_addrinfo(void **buffer, * packed, uninitialized gaps make it hard to analyse with valgrind. */ /* *INDENT-EQLS* */ - actual->ai_flags = phost->ai_flags; - actual->ai_family = phost->ai_family; + actual->ai_flags = phost->ai_flags; + actual->ai_family = phost->ai_family; actual->ai_socktype = phost->ai_socktype; actual->ai_protocol = phost->ai_protocol; - actual->ai_addrlen = phost->ai_addrlen; - actual->ai_addr = (struct sockaddr *) (void *) heap; + actual->ai_addrlen = phost->ai_addrlen; + actual->ai_addr = (struct sockaddr *) (void *) heap; MemCpy(heap, phost->ai_addr, phost->ai_addrlen); heap += phost->ai_addrlen; |