Skip to content
Snippets Groups Projects
Commit eb973433 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #13587: sip: use PACKAGE macro instead of hardcoded string

parent 2c7fc333
Branches
Tags
No related merge requests found
...@@ -423,7 +423,7 @@ SIPVoIPLink::SIPVoIPLink() : sipTransport(endpt_, cp_, pool_), evThread_(this) ...@@ -423,7 +423,7 @@ SIPVoIPLink::SIPVoIPLink() : sipTransport(endpt_, cp_, pool_), evThread_(this)
TRY(pjnath_init()); TRY(pjnath_init());
pj_caching_pool_init(cp_, &pj_pool_factory_default_policy, 0); pj_caching_pool_init(cp_, &pj_pool_factory_default_policy, 0);
pool_ = pj_pool_create(&cp_->factory, "sflphone", 4000, 4000, NULL); pool_ = pj_pool_create(&cp_->factory, PACKAGE, 4000, 4000, NULL);
if (!pool_) if (!pool_)
throw VoipLinkException("UserAgent: Could not initialize memory pool"); throw VoipLinkException("UserAgent: Could not initialize memory pool");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment