mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
fix typo: || not |
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1429169 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -153,7 +153,7 @@ static apr_status_t util_write(request_rec *r, apr_file_t *file, apr_off_t *size
|
||||
|
||||
rc = apr_file_write_full(file, argsbuffer, (apr_size_t) rsize,
|
||||
&written);
|
||||
if (written != rsize | rc != OK)
|
||||
if (written != rsize || rc != OK)
|
||||
return APR_ENOSPC;
|
||||
rpos += rsize;
|
||||
}
|
||||
|
Reference in New Issue
Block a user