1
0
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:
Stefan Fritsch
2013-01-04 23:48:15 +00:00
parent 5d4ab410f2
commit 7deeb8782a

View File

@@ -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;
}