From bdaebfc338f06807fd985f40a38006a968f5b574 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 29 Sep 2006 09:06:32 +0000 Subject: [PATCH] - cookielist -> cookies --- scripts/gen_curlinfo.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/gen_curlinfo.php b/scripts/gen_curlinfo.php index 92bde38..f9d83f6 100644 --- a/scripts/gen_curlinfo.php +++ b/scripts/gen_curlinfo.php @@ -35,7 +35,8 @@ $exclude = array( 'PRIVATE', 'LASTSOCKET', 'FTP_ENTRY_PATH' ); $translate = array( - 'HTTP_CONNECTCODE' => "connect_code" + 'HTTP_CONNECTCODE' => "connect_code", + 'COOKIELIST' => 'cookies', ); $templates = array( @@ -74,8 +75,7 @@ foreach ($infos as $info) { list(, $full, $short, $type) = $info; if (in_array($short, $exclude)) continue; if (isset($ifdefs[$short])) printf("#if HTTP_CURL_VERSION(%s)\n", $ifdefs[$short]); - if (isset($translate[$short])) $short = $translate[$short]; - printf($templates[$type], $full, strtolower($short)); + printf($templates[$type], $full, strtolower((isset($translate[$short])) ? $translate[$short] : $short)); if (isset($ifdefs[$short])) printf("#endif\n"); } -- 2.30.2