comparison src/os/win32/ngx_service.c @ 4499:778ef9c3fd2d

Fixed spelling in single-line comments.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 28 Feb 2012 11:31:05 +0000
parents d620f497c50f
children c5ec6944de98
comparison
equal deleted inserted replaced
4498:569ea17767bf 4499:778ef9c3fd2d
18 18
19 ngx_int_t ngx_service(ngx_log_t *log) 19 ngx_int_t ngx_service(ngx_log_t *log)
20 { 20 {
21 /* primary thread */ 21 /* primary thread */
22 22
23 /* StartServiceCtrlDispatcher() shouxpdl be called within 30 seconds */ 23 /* StartServiceCtrlDispatcher() should be called within 30 seconds */
24 24
25 if (StartServiceCtrlDispatcher(st) == 0) { 25 if (StartServiceCtrlDispatcher(st) == 0) {
26 ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, 26 ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
27 "StartServiceCtrlDispatcher() failed"); 27 "StartServiceCtrlDispatcher() failed");
28 return NGX_ERROR; 28 return NGX_ERROR;