Changeset a3518fe2da96fee5c577d97b77bb7714465165d2
- Timestamp:
- 04/17/12 01:59:45
(1 year ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1334627985 -0400
- git-parent:
[f3bf693ba571a6c22958a8842af4f05c6e4c93d2]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1334627985 -0400
- Message:
these need to pass their returns
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ree04721 |
ra3518fe |
|
| 1386 | 1386 | noit_http_response_flush(noit_http_session_ctx *ctx, |
|---|
| 1387 | 1387 | noit_boolean final) { |
|---|
| 1388 | | _noit_http_response_flush(ctx, final, noit_true); |
|---|
| | 1388 | return _noit_http_response_flush(ctx, final, noit_true); |
|---|
| 1389 | 1389 | } |
|---|
| 1390 | 1390 | noit_boolean |
|---|
| 1391 | 1391 | noit_http_response_flush_asynch(noit_http_session_ctx *ctx, |
|---|
| 1392 | 1392 | noit_boolean final) { |
|---|
| 1393 | | _noit_http_response_flush(ctx, final, noit_false); |
|---|
| | 1393 | return _noit_http_response_flush(ctx, final, noit_false); |
|---|
| 1394 | 1394 | } |
|---|
| 1395 | 1395 | |
|---|