libmobile: Minor fixes

This commit is contained in:
Andreas Eversberg 2021-02-07 17:07:10 +01:00
parent 8c0a25f3b0
commit 6650631b4f
2 changed files with 5 additions and 4 deletions

View File

@ -709,9 +709,10 @@ void ll_msg_cb(osmo_cc_endpoint_t __attribute__((unused)) *ep, uint32_t callref,
/* caller id */
rc = osmo_cc_get_ie_calling(msg, 0, &type, &plan, &present, &screen, caller_id, sizeof(caller_id));
if (rc < 0)
if (rc < 0) {
caller_type = TYPE_NOTAVAIL;
else {
caller_id[0] = '\0';
} else {
switch (type) {
case OSMO_CC_TYPE_INTERNATIONAL:
caller_type = TYPE_INTERNATIONAL;

View File

@ -66,8 +66,8 @@ typedef struct console {
uint32_t callref;
enum console_state state;
int disc_cause; /* cause that has been sent by transceiver instance for release */
char station_id[16];
char dialing[16];
char station_id[33];
char dialing[33];
char audiodev[64]; /* headphone interface, if used */
int samplerate; /* sample rate of headphone interface */
void *sound; /* headphone interface */