Skip to content

Commit 9fc5b06

Browse files
committed
misc: unify terminology
3-character ellipsis ... → 1-character ellipsis … Change-Id: If14c822aaf7c32a50a5367c26cc2deededebfd90 GitLab: https://git.jami.net/savoirfairelinux/jami-client-qt/issues/1730
1 parent 7566b78 commit 9fc5b06

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/ice_transport.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ IceTransport::Impl::onComplete(pj_ice_strans*, pj_ice_strans_op op, pj_status_t
749749
if (done) {
750750
// Dump of connection pairs
751751
if (logger_)
752-
logger_->debug("[ice:{}] {:s} connection pairs ([comp id] local [type] <-> remote [type]):\n{:s}",
752+
logger_->debug("[ice:{}] {:s} connection pairs ([comp id] local [type] remote [type]):\n{:s}",
753753
fmt::ptr(this),
754754
(config_.protocol == PJ_ICE_TP_TCP ? "TCP" : "UDP"),
755755
link());
@@ -774,7 +774,7 @@ IceTransport::Impl::link() const
774774
if (laddr and laddr.getPort() != 0 and raddr and raddr.getPort() != 0) {
775775
out << " [" << comp << "] " << laddr.toString(true, true) << " ["
776776
<< getCandidateType(getSelectedCandidate(absIdx, false)) << "] "
777-
<< " <-> " << raddr.toString(true, true) << " ["
777+
<< " " << raddr.toString(true, true) << " ["
778778
<< getCandidateType(getSelectedCandidate(absIdx, true)) << "] " << '\n';
779779
} else {
780780
out << " [" << comp << "] disabled\n";

src/security/tls_session.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ class TlsSession::TlsSessionImpl
236236
std::atomic<TlsSessionState> newState_ {TlsSessionState::NONE};
237237
std::atomic<int> maxPayload_ {-1};
238238

239-
// IO GnuTLS <-> ICE
239+
// IO GnuTLS ICE
240240
std::mutex rxMutex_ {};
241241
std::condition_variable rxCv_ {};
242242
std::list<std::vector<ValueType>> rxQueue_ {};

src/upnp/protocol/pupnp/pupnp.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ PUPnP::PUPnP(const std::shared_ptr<asio::io_context>& ctx, const std::shared_ptr
9999
: UPnPProtocol(logger), ioContext(ctx), searchForIgdTimer_(*ctx)
100100
, ongoingOpsThreadPool_(1, 64)
101101
{
102-
if (logger_) logger_->debug("PUPnP: Creating instance [{}] ...", fmt::ptr(this));
102+
if (logger_) logger_->debug("PUPnP: Creating instance [{}]", fmt::ptr(this));
103103
}
104104

105105
PUPnP::~PUPnP()

0 commit comments

Comments
 (0)