diff options
author | redmatrix <git@macgirvin.com> | 2016-02-25 14:34:30 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-25 14:34:30 -0800 |
commit | 7972de13caf21647c8cc2e82c499a344f7191a22 (patch) | |
tree | 240881fffc3c89e128d83fa94ef7014eefdfd970 /include/queue_fn.php | |
parent | ebfa1a12b9cc3d939ed49a7f66e5687267a409d3 (diff) | |
download | volse-hubzilla-7972de13caf21647c8cc2e82c499a344f7191a22.tar.gz volse-hubzilla-7972de13caf21647c8cc2e82c499a344f7191a22.tar.bz2 volse-hubzilla-7972de13caf21647c8cc2e82c499a344f7191a22.zip |
backtrace openssl_verify errors so that we can find bad keys - as there is very little relevant context available at this level.
Diffstat (limited to 'include/queue_fn.php')
-rw-r--r-- | include/queue_fn.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/queue_fn.php b/include/queue_fn.php index 3112a832b..676620e2f 100644 --- a/include/queue_fn.php +++ b/include/queue_fn.php @@ -126,7 +126,7 @@ function queue_deliver($outq, $immediate = false) { remove_queue_item($outq['outq_hash']); // server is responding - see if anything else is going to this destination and is piled up - // and try to send some more. We're relying on the fact that delivery_loop() results in an + // and try to send some more. We're relying on the fact that do_delivery() results in an // immediate delivery otherwise we could get into a queue loop. if(! $immediate) { @@ -141,7 +141,7 @@ function queue_deliver($outq, $immediate = false) { } } if($piled_up) { - delivery_loop($piled_up); + do_delivery($piled_up); } } } |