mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 17:40:40 -04:00
one and will not accept an empty expression. Add patch (from PR) to fix this problem. PR: 211187 Submitted by: Dmitry Vagin <daemon.hammer at ya.ru>
11 lines
252 B
C
11 lines
252 B
C
--- res/res_pjsip/pjsip_cli.c.orig 2016-05-13 17:41:41 UTC
|
|
+++ res/res_pjsip/pjsip_cli.c
|
|
@@ -172,7 +172,7 @@ char *ast_sip_cli_traverse_objects(struc
|
|
}
|
|
regex = a->argv[4];
|
|
} else {
|
|
- regex = "";
|
|
+ regex = ".";
|
|
}
|
|
|
|
if (cmd == CLI_GENERATE
|