comparison src/os/win32/ngx_errno.c @ 4725:47936d1c98e9 stable-1.2

Merge of r4682, r4694, r4699, r4704, r4705: minor nits. *) Fixed spelling of "endianness", and called it "byte ordering" in the user visible part. *) Fixed return type of ngx_strerror_init(). *) Fixed a harmless error in spelling of "Connection: close" when computing the response header length. *) Style. *) Added code to look up Google perftools in /opt/local/, for MacPorts.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 02 Jul 2012 16:51:02 +0000
parents d620f497c50f
children 746567d633ac
comparison
equal deleted inserted replaced
4724:0141b4aec0e4 4725:47936d1c98e9
51 51
52 return &errstr[++len]; 52 return &errstr[++len];
53 } 53 }
54 54
55 55
56 ngx_uint_t 56 ngx_int_t
57 ngx_strerror_init(void) 57 ngx_strerror_init(void)
58 { 58 {
59 return NGX_OK; 59 return NGX_OK;
60 } 60 }