Fix default subscriber regexp

Incorrect regular expression used by default to authorize all
subscribers to implement authorization policy 'accept-all' prevented MS
from camping on the open network.

Change-Id: I20284b3d40ecf4ca1e67d8cd25afb8d5e4ae3025
This commit is contained in:
Max 2016-07-27 12:06:36 +02:00
parent d1c0e3755f
commit e443145d3e
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ struct gsm_network *gsm_network_init(uint16_t country_code, uint16_t network_cod
int (*mncc_recv)(struct gsm_network *, struct msgb *))
{
struct gsm_network *net;
const char *default_regexp = "*";
const char *default_regexp = ".*";
net = talloc_zero(tall_bsc_ctx, struct gsm_network);
if (!net)