From 70cb120951ee178deb0ca501fbe1b74c8bce5e2c Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Fri, 23 Apr 2021 15:17:37 +0200 Subject: [PATCH] sip: fix typos Thanks to lintian for pointing it out! --- plugins/sip/calls-sip-origin.c | 2 +- plugins/sip/calls-sip-provider.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sip/calls-sip-origin.c b/plugins/sip/calls-sip-origin.c index 4f061dc..2821be1 100644 --- a/plugins/sip/calls-sip-origin.c +++ b/plugins/sip/calls-sip-origin.c @@ -877,7 +877,7 @@ calls_sip_origin_set_property (GObject *object, case PROP_SIP_LOCAL_PORT: if (g_value_get_int (value) > 0 && g_value_get_int (value) < 1025) { - g_warning ("Tried setting a priviliged port as the local port to bind to: %d\n" + g_warning ("Tried setting a privileged port as the local port to bind to: %d\n" "Continue using old 'local-port' value: %d (using 0 let's the OS decide)", g_value_get_int (value), self->local_port); return; diff --git a/plugins/sip/calls-sip-provider.c b/plugins/sip/calls-sip-provider.c index a92aa19..10579d1 100644 --- a/plugins/sip/calls-sip-provider.c +++ b/plugins/sip/calls-sip-provider.c @@ -322,7 +322,7 @@ calls_sip_provider_constructed (GObject *object) calls_sip_provider_load_accounts (self); } else - g_warning ("Could not initalize sofia stack: %s", error->message); + g_warning ("Could not initialize sofia stack: %s", error->message); G_OBJECT_CLASS (calls_sip_provider_parent_class)->constructed (object); }