update conf.c: regular expression for password

Change regular expression for password from `[^@]*` to `.*` this matches all characters including the @ character.
This commit is contained in:
Reshad Patuck 2020-09-28 21:29:56 +05:30 committed by GitHub
parent 7c664ad0b2
commit 0c526514fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@
#define INT "((0x)?[[:digit:]]+)"
#define ALNUM "([-a-z0-9._]+)"
#define USERNAME "([^:]*)"
#define PASSWORD "([^@]*)"
#define PASSWORD "(.*)"
#define IP "((([0-9]{1,3})\\.){3}[0-9]{1,3})"
#define IPMASK "(" IP "(/[[:digit:]]+)?)"
#define IPV6 "(" \