Skip to content

Commit

Permalink
Merge pull request #81 from yukimunet/modifypath
Browse files Browse the repository at this point in the history
path is wrong
  • Loading branch information
hirak committed Apr 26, 2016
2 parents b19a517 + f98585d commit f96c471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpGetRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public function nssCiphers()
$ver = curl_version();
if (preg_match('/^NSS.*Basic ECC$/', $ver['ssl_version'])) {
$ciphers = array();
foreach (new \SplFileObject(__DIR__ . '/../../res/nss_ciphers.txt') as $line) {
foreach (new \SplFileObject(__DIR__ . '/../res/nss_ciphers.txt') as $line) {
$line = trim($line);
if ($line) {
$ciphers[] = $line;
Expand Down

0 comments on commit f96c471

Please sign in to comment.