From 9c9d11e410aca36568017e98a77cd93b46bf1943 Mon Sep 17 00:00:00 2001 From: agsantos <aline.gondimsantos@savoirfairelinux.com> Date: Wed, 15 Dec 2021 09:31:09 -0500 Subject: [PATCH] misc: fix typo - tranport -> transport Change-Id: I1991ba7324c22625e8b6cdf568357e3ff6540557 --- src/ice_transport.h | 2 +- src/jamidht/abstract_sip_transport.h | 2 +- src/jamidht/jamiaccount.cpp | 2 +- src/sip/sipcall.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ice_transport.h b/src/ice_transport.h index 4bee84740c..c8b373ea6b 100644 --- a/src/ice_transport.h +++ b/src/ice_transport.h @@ -140,7 +140,7 @@ public: bool isInitiator() const; /** - * Start tranport negotiation between local candidates and given remote + * Start transport negotiation between local candidates and given remote * to find the right candidate pair. * This function doesn't block, the callback on_negodone_cb will be called * with the negotiation result when operation is really done. diff --git a/src/jamidht/abstract_sip_transport.h b/src/jamidht/abstract_sip_transport.h index 98925d55be..9d8cb5ed4d 100644 --- a/src/jamidht/abstract_sip_transport.h +++ b/src/jamidht/abstract_sip_transport.h @@ -44,7 +44,7 @@ public: AbstractSIPTransport* self {nullptr}; }; static_assert(std::is_standard_layout<TransportData>::value, - "TranportData requires standard-layout"); + "TransportData requires standard-layout"); virtual ~AbstractSIPTransport() {}; diff --git a/src/jamidht/jamiaccount.cpp b/src/jamidht/jamiaccount.cpp index f4f38035c1..900631ab87 100644 --- a/src/jamidht/jamiaccount.cpp +++ b/src/jamidht/jamiaccount.cpp @@ -287,7 +287,7 @@ dhtStatusStr(dht::NodeStatus status) /** * Local ICE Transport factory helper * - * JamiAccount must use this helper than direct IceTranportFactory API + * JamiAccount must use this helper than direct IceTransportFactory API */ template<class... Args> std::shared_ptr<IceTransport> diff --git a/src/sip/sipcall.cpp b/src/sip/sipcall.cpp index cd670fe2ff..e998b1d9bf 100644 --- a/src/sip/sipcall.cpp +++ b/src/sip/sipcall.cpp @@ -398,7 +398,7 @@ SIPCall::setSipTransport(const std::shared_ptr<SipTransport>& transport, const std::string& contactHdr) { if (transport != sipTransport_) { - JAMI_DBG("[call:%s] Setting tranport to [%p]", getCallId().c_str(), transport.get()); + JAMI_DBG("[call:%s] Setting transport to [%p]", getCallId().c_str(), transport.get()); } sipTransport_ = transport; -- GitLab