mirror of
https://github.com/curl/curl.git
synced 2026-07-30 04:28:02 +03:00
test1477.pl: add exception for CURLM_CALL_MULTI_SOCKET
It's regex is not picking it up from multi.h because it's a #define, not an enum with an indent.
This commit is contained in:
parent
b1e5547b88
commit
c409371b08
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ sub scanheader {
|
|||
$line++;
|
||||
if($_ =~ /^ (CURL(E|UE|SHE|HE|M)_[A-Z0-9_]*)/) {
|
||||
my ($name)=($1);
|
||||
if(($name !~ /(OBSOLETE|CURLE_RESERVED)/) && ($name !~ /_LAST\z/)) {
|
||||
if(($name !~ /(OBSOLETE|CURLE_RESERVED|CURLM_CALL_MULTI_SOCKET)/) && ($name !~ /_LAST\z/)) {
|
||||
push @hnames, $name;
|
||||
if($wherefrom{$name}) {
|
||||
print STDERR "double: $name\n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue