mirror of
https://github.com/curl/curl.git
synced 2026-08-25 06:03:32 +03:00
perl: || die -> or die
Usage was fifty-fifty between these syntaxes before this patch. Closes #22036
This commit is contained in:
parent
5d1ac48088
commit
678e63934c
29 changed files with 69 additions and 69 deletions
|
|
@ -41,7 +41,7 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
open(S, "<../libcurl/symbols-in-versions") || die;
|
||||
open(S, "<../libcurl/symbols-in-versions") or die;
|
||||
|
||||
my %doc;
|
||||
my %rem;
|
||||
|
|
@ -70,7 +70,7 @@ sub age {
|
|||
}
|
||||
|
||||
my %used;
|
||||
open(C, "<$ARGV[0]") || die;
|
||||
open(C, "<$ARGV[0]") or die;
|
||||
|
||||
while(<C>) {
|
||||
if(/\W(CURL[_A-Z0-9v]+)\W/) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue