From: Michael Schroeder Date: Fri, 28 Aug 2015 13:52:42 +0000 (+0200) Subject: fix typo in comment X-Git-Tag: 0.6.12~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96c6f95eba24fbac88733ee106a43f245954b9f0;p=thirdparty%2Flibsolv.git fix typo in comment --- diff --git a/examples/p5solv b/examples/p5solv index 1f608cc7..0a1dbb0b 100755 --- a/examples/p5solv +++ b/examples/p5solv @@ -87,7 +87,7 @@ sub download { $url =~ s!/$!!; $url .= "/$file"; open(my $f, '+>', undef) || die; - fcntl($f, Fcntl::F_SETFD, 0); # turn of CLOEXEC + fcntl($f, Fcntl::F_SETFD, 0); # turn off CLOEXEC my $st = system('curl', '-f', '-s', '-L', '-o', "/dev/fd/" . fileno($f), '--', $url); if (POSIX::lseek(fileno($f), 0, POSIX::SEEK_END) == 0 && ($st == 0 || !$chksum)) { return undef;