<p>Richard Mudgett has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/6611">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">res_pjsip_outbound_publish.c: Fix misplaced parenthesis.<br><br>The pjsip_publishc_init() call was referenced with a misplaced<br>parentheses.  As a result, outbound publication messages went out with an<br>expiration of 1 second.<br><br>ASTERISK-27298<br><br>Change-Id: I93622eabc8ee83e7a22e98c107f921284c605a08<br>---<br>M res/res_pjsip_outbound_publish.c<br>1 file changed, 1 insertion(+), 1 deletion(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/11/6611/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">diff --git a/res/res_pjsip_outbound_publish.c b/res/res_pjsip_outbound_publish.c<br>index 18525bf..0fac8ad 100644<br>--- a/res/res_pjsip_outbound_publish.c<br>+++ b/res/res_pjsip_outbound_publish.c<br>@@ -986,7 +986,7 @@<br> <br>  pj_cstr(&event, publish->event);<br>       if (pjsip_publishc_init(publisher->client, &event, &server_uri, &from_uri, &to_uri,<br>-                               publish->expiration != PJ_SUCCESS)) {<br>+                     publish->expiration) != PJ_SUCCESS) {<br>              ast_log(LOG_ERROR, "Failed to initialize publishing client on outbound publish '%s'\n",<br>                     ast_sorcery_object_get_id(publish));<br>          pjsip_endpt_release_pool(ast_sip_get_pjsip_endpoint(), pool);<br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/6611">change 6611</a>. To unsubscribe, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/6611"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: 14 </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>
<div style="display:none"> Gerrit-Change-Id: I93622eabc8ee83e7a22e98c107f921284c605a08 </div>
<div style="display:none"> Gerrit-Change-Number: 6611 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Richard Mudgett <rmudgett@digium.com> </div>