From 6a76969d6ea91004838f5afac2836fa69bcd7371 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 14 Sep 2016 14:49:11 +0200 Subject: [PATCH] tools: Use --insecure option when using curl --- tools/update_compids.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/update_compids.sh b/tools/update_compids.sh index 7c4cc1245..e82d3e413 100755 --- a/tools/update_compids.sh +++ b/tools/update_compids.sh @@ -25,7 +25,7 @@ echo -e 'const char *bt_compidtostr(int compid)\n{\n\tswitch (compid) {' > new.c path=specifications/assigned-numbers/company-identifiers # Use "iconv -c" to strip unwanted unicode characters -curl https://www.bluetooth.com/$path | \ +curl --insecure https://www.bluetooth.com/$path | \ $scriptdir/tools/parse_companies.pl >> new.c if ! grep -q "return \"" new.c; then -- 2.47.3