comparison src/http/ngx_http_core_module.c @ 3806:01542054f2c3

fix comment
author Igor Sysoev <igor@sysoev.ru>
date Mon, 29 Nov 2010 19:41:53 +0000
parents 7f491d3f3b57
children 005d5cf5b403
comparison
equal deleted inserted replaced
3805:7f491d3f3b57 3806:01542054f2c3
907 907
908 if (rc == NGX_DONE) { 908 if (rc == NGX_DONE) {
909 return NGX_OK; 909 return NGX_OK;
910 } 910 }
911 911
912 /* NGX_AGAIN || rc == NGX_ERROR || rc == NGX_HTTP_... */ 912 /* NGX_OK, NGX_AGAIN, NGX_ERROR, NGX_HTTP_... */
913 913
914 ngx_http_finalize_request(r, rc); 914 ngx_http_finalize_request(r, rc);
915 915
916 return NGX_OK; 916 return NGX_OK;
917 } 917 }