comparison src/core/ngx_inet.c @ 4572:67653855682e

Fixed spelling in multiline C comments.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 03 Apr 2012 07:37:31 +0000
parents d620f497c50f
children 98a2518a98dc
comparison
equal deleted inserted replaced
4571:2942a827da09 4572:67653855682e
457 #if (NGX_HAVE_INET6) 457 #if (NGX_HAVE_INET6)
458 struct in6_addr inaddr6; 458 struct in6_addr inaddr6;
459 struct sockaddr_in6 *sin6; 459 struct sockaddr_in6 *sin6;
460 460
461 /* 461 /*
462 * prevent MSVC8 waring: 462 * prevent MSVC8 warning:
463 * potentially uninitialized local variable 'inaddr6' used 463 * potentially uninitialized local variable 'inaddr6' used
464 */ 464 */
465 ngx_memzero(inaddr6.s6_addr, sizeof(struct in6_addr)); 465 ngx_memzero(inaddr6.s6_addr, sizeof(struct in6_addr));
466 #endif 466 #endif
467 467