1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-06 11:35:32 +00:00

sip: fix typos

Thanks to lintian for pointing it out!
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-04-23 15:17:37 +02:00
parent 1593dd299b
commit 70cb120951
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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);
}