Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Merge requests
!2685
Fix compilation issue in linphonec.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Simon Morlat
requested to merge
feature/tester-improvements
into
master
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Viewing commit
c35195e2
Show latest version
1 file
+
1
−
2
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
c35195e2
Fix compilation issue in linphonec.
· c35195e2
Simon Morlat
authored
1 year ago
console/commands.c
+
1
−
2
Options
View file @ c35195e2
Edit in single-file editor
Open in Web IDE
Show full file
@@ -1548,13 +1548,12 @@ static void linphonec_proxy_add(LinphoneCore *lc) {
}
static
void
linphonec_proxy_display
(
LinphoneProxyConfig
*
cfg
)
{
char
*
route
=
linphone_proxy_config_get_route
(
cfg
);
const
char
*
route
=
linphone_proxy_config_get_route
(
cfg
);
char
*
identity
=
linphone_address_as_string
(
linphone_proxy_config_get_identity_address
(
cfg
));
linphonec_out
(
"sip address: %s
\n
route: %s
\n
identity: %s
\n
register: %s
\n
expires: %i
\n
registered: %s
\n
"
,
linphone_proxy_config_get_addr
(
cfg
),
(
route
!=
NULL
)
?
route
:
""
,
(
identity
!=
NULL
)
?
identity
:
""
,
linphone_proxy_config_register_enabled
(
cfg
)
?
"yes"
:
"no"
,
linphone_proxy_config_get_expires
(
cfg
),
linphone_proxy_config_get_state
(
cfg
)
==
LinphoneRegistrationOk
?
"yes"
:
"no"
);
bctbx_free
(
route
);
ms_free
(
identity
);
}
Menu
Explore
Projects
Groups
Topics
Snippets