Skip to content

Commit

Permalink
misc: unify terminology
Browse files Browse the repository at this point in the history
3-character ellipsis ... → 1-character ellipsis …

Change-Id: If14c822aaf7c32a50a5367c26cc2deededebfd90
GitLab: https://git.jami.net/savoirfairelinux/jami-client-qt/issues/1730
  • Loading branch information
ovari committed Nov 24, 2024
1 parent 7566b78 commit 9fc5b06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/ice_transport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ IceTransport::Impl::onComplete(pj_ice_strans*, pj_ice_strans_op op, pj_status_t
if (done) {
// Dump of connection pairs
if (logger_)
logger_->debug("[ice:{}] {:s} connection pairs ([comp id] local [type] <-> remote [type]):\n{:s}",
logger_->debug("[ice:{}] {:s} connection pairs ([comp id] local [type] remote [type]):\n{:s}",
fmt::ptr(this),
(config_.protocol == PJ_ICE_TP_TCP ? "TCP" : "UDP"),
link());
Expand All @@ -774,7 +774,7 @@ IceTransport::Impl::link() const
if (laddr and laddr.getPort() != 0 and raddr and raddr.getPort() != 0) {
out << " [" << comp << "] " << laddr.toString(true, true) << " ["
<< getCandidateType(getSelectedCandidate(absIdx, false)) << "] "
<< " <-> " << raddr.toString(true, true) << " ["
<< " " << raddr.toString(true, true) << " ["
<< getCandidateType(getSelectedCandidate(absIdx, true)) << "] " << '\n';
} else {
out << " [" << comp << "] disabled\n";
Expand Down
2 changes: 1 addition & 1 deletion src/security/tls_session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class TlsSession::TlsSessionImpl
std::atomic<TlsSessionState> newState_ {TlsSessionState::NONE};
std::atomic<int> maxPayload_ {-1};

// IO GnuTLS <-> ICE
// IO GnuTLS ICE
std::mutex rxMutex_ {};
std::condition_variable rxCv_ {};
std::list<std::vector<ValueType>> rxQueue_ {};
Expand Down
2 changes: 1 addition & 1 deletion src/upnp/protocol/pupnp/pupnp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ PUPnP::PUPnP(const std::shared_ptr<asio::io_context>& ctx, const std::shared_ptr
: UPnPProtocol(logger), ioContext(ctx), searchForIgdTimer_(*ctx)
, ongoingOpsThreadPool_(1, 64)
{
if (logger_) logger_->debug("PUPnP: Creating instance [{}] ...", fmt::ptr(this));
if (logger_) logger_->debug("PUPnP: Creating instance [{}]", fmt::ptr(this));
}

PUPnP::~PUPnP()
Expand Down

0 comments on commit 9fc5b06

Please sign in to comment.