diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-04 16:46:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-04 16:46:11 +0100 |
commit | ba3d80516722e22bb24201f0cb6f3440e4df1d45 (patch) | |
tree | e7c6a2f3d1671cf3b1a3b34e83387bf0a83d4f8c /src/plugins | |
parent | d8ad7e6a8d5c93e67e01a6643c6bbb2d9b7e33db (diff) | |
parent | 9121e5812c367debb2ef967c4715d54677b5acb3 (diff) | |
download | weechat-ba3d80516722e22bb24201f0cb6f3440e4df1d45.zip |
Merge pull request #1273 from half-duplex/master
Fix regex in relay.network.allowed_ips doc
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/relay/relay-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-config.c b/src/plugins/relay/relay-config.c index a07d868ef..012c74ac4 100644 --- a/src/plugins/relay/relay-config.c +++ b/src/plugins/relay/relay-config.c @@ -828,7 +828,7 @@ relay_config_init () N_("POSIX extended regular expression with IPs allowed to use relay " "(case insensitive, use \"(?-i)\" at beginning to make it case " "sensitive), example: " - "\"^(123.45.67.89|192.160.*)$\""), + "\"^(123\\.45\\.67\\.89|192\\.160\\..*)$\""), NULL, 0, 0, "", NULL, 0, NULL, NULL, NULL, &relay_config_change_network_allowed_ips, NULL, NULL, |