73dae11255
Asterisk is a complete PBX in software. It provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in three protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware. Asterisk provides Voicemail services with Directory, Call Conferencing, Interactive Voice Response, Call Queuing. It has support for three-way calling, caller ID services, ADSI, SIP and H.323 (as both client and gateway). This is a standard version. It is scheduled to go to security fixes only on October 3th, 2018, and EOL on October 3th, 2019. See here for more information about Asterisk versions: https://wiki.asterisk.org/wiki/display/AST/Asterisk+Versions
13 lines
523 B
C
13 lines
523 B
C
$NetBSD: patch-main_bridge__basic.c,v 1.1 2018/07/16 21:53:05 joerg Exp $
|
|
|
|
--- main/bridge_basic.c.orig 2018-05-07 17:25:08.340535041 +0000
|
|
+++ main/bridge_basic.c
|
|
@@ -167,7 +167,7 @@ static int build_dtmf_features(struct as
|
|
size_t number_of_missing_features = 0;
|
|
|
|
for (feature = features; *feature; feature++) {
|
|
- if (!isupper(*feature)) {
|
|
+ if (!isupper((unsigned char)*feature)) {
|
|
ast_log(LOG_ERROR, "Features string '%s' rejected because it contains non-uppercase feature.\n", features);
|
|
return -1;
|
|
}
|