diff options
| author | Daniil Baturin <daniil@baturin.org> | 2021-02-10 22:06:36 +0700 |
|---|---|---|
| committer | Daniil Baturin <daniil@baturin.org> | 2021-02-10 22:06:36 +0700 |
| commit | 3eb5e4a458ec62bcf14d065d47d9827327a51b2a (patch) | |
| tree | d519feff694062f92dc49d1b5547ae27c0e150bc /src/ipaddrcheck_functions.c | |
| parent | a5eb1c40b58f653d902572d9deb21919df103544 (diff) | |
| download | ipaddrcheck-3eb5e4a458ec62bcf14d065d47d9827327a51b2a.tar.gz ipaddrcheck-3eb5e4a458ec62bcf14d065d47d9827327a51b2a.zip | |
Correct the double colon check commands.
How late at night must it have been for me to write "semicolons"?
Diffstat (limited to 'src/ipaddrcheck_functions.c')
| -rw-r--r-- | src/ipaddrcheck_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ipaddrcheck_functions.c b/src/ipaddrcheck_functions.c index 965ee19..d98ceda 100644 --- a/src/ipaddrcheck_functions.c +++ b/src/ipaddrcheck_functions.c @@ -37,8 +37,8 @@ */ -/* Does it contain double semicolons? This is not allowed in IPv6 addresses */ -int duplicate_double_semicolons(char* address_str) { +/* Does it contain double colons? This is not allowed in IPv6 addresses */ +int duplicate_double_colons(char* address_str) { int offsets[1]; pcre *re; int rc; |
