Updated EchoLink module patch
This commit is contained in:
parent
49f29dbb31
commit
8f052f3baa
2 changed files with 14 additions and 12 deletions
|
@ -89,6 +89,7 @@ void BrandMeisterBridge::setTalker(const char* call, const char* name)
|
||||||
size_t length = delimiter1 - call;
|
size_t length = delimiter1 - call;
|
||||||
char* buffer = (char*)alloca(length + sizeof(uint32_t));
|
char* buffer = (char*)alloca(length + sizeof(uint32_t));
|
||||||
strncpy(buffer, call, length);
|
strncpy(buffer, call, length);
|
||||||
|
buffer[length] = '\0';
|
||||||
call = buffer;
|
call = buffer;
|
||||||
}
|
}
|
||||||
if (delimiter2 != NULL)
|
if (delimiter2 != NULL)
|
||||||
|
@ -97,6 +98,7 @@ void BrandMeisterBridge::setTalker(const char* call, const char* name)
|
||||||
size_t length = delimiter2 - name;
|
size_t length = delimiter2 - name;
|
||||||
char* buffer = (char*)alloca(length + sizeof(uint32_t));
|
char* buffer = (char*)alloca(length + sizeof(uint32_t));
|
||||||
strncpy(buffer, name, length);
|
strncpy(buffer, name, length);
|
||||||
|
buffer[length] = '\0';
|
||||||
name = buffer;
|
name = buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -213,13 +213,13 @@ uint32_t PatchCord::getPrivateIDForCall(const char* call)
|
||||||
|
|
||||||
message = dbus_pending_call_steal_reply(pending);
|
message = dbus_pending_call_steal_reply(pending);
|
||||||
|
|
||||||
uint32_t number;
|
dbus_uint32_t number;
|
||||||
uint32_t algorithm;
|
dbus_uint32_t algorithm;
|
||||||
uint32_t key;
|
dbus_uint32_t key;
|
||||||
uint32_t interval;
|
dbus_uint32_t interval;
|
||||||
uint32_t capabilities;
|
dbus_uint32_t capabilities;
|
||||||
|
dbus_uint32_t station;
|
||||||
const char* language;
|
const char* language;
|
||||||
uint32_t station;
|
|
||||||
const char* call;
|
const char* call;
|
||||||
const char* text;
|
const char* text;
|
||||||
const char* symbol;
|
const char* symbol;
|
||||||
|
@ -266,13 +266,13 @@ bool PatchCord::getCredentialsForID(uint32_t number, char* call, char* text)
|
||||||
|
|
||||||
message = dbus_pending_call_steal_reply(pending);
|
message = dbus_pending_call_steal_reply(pending);
|
||||||
|
|
||||||
uint32_t number;
|
dbus_uint32_t number;
|
||||||
uint32_t algorithm;
|
dbus_uint32_t algorithm;
|
||||||
uint32_t key;
|
dbus_uint32_t key;
|
||||||
uint32_t interval;
|
dbus_uint32_t interval;
|
||||||
uint32_t capabilities;
|
dbus_uint32_t capabilities;
|
||||||
|
dbus_uint32_t station;
|
||||||
const char* language;
|
const char* language;
|
||||||
uint32_t station;
|
|
||||||
const char* value1;
|
const char* value1;
|
||||||
const char* value2;
|
const char* value2;
|
||||||
const char* symbol;
|
const char* symbol;
|
||||||
|
|
Loading…
Add table
Reference in a new issue