From 2c603c4462fb388cd28106ddf833a43e2e6929f8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 Jan 2016 19:28:57 +0200 Subject: Get rid of redundant full qualification --- bpkg/manifest.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bpkg') diff --git a/bpkg/manifest.cxx b/bpkg/manifest.cxx index b7b0aaf..b6da488 100644 --- a/bpkg/manifest.cxx +++ b/bpkg/manifest.cxx @@ -1211,9 +1211,9 @@ namespace bpkg using protocol = url_parts::protocol; optional p; - if (::strncasecmp (location.c_str (), "http://", 7) == 0) + if (strncasecmp (location.c_str (), "http://", 7) == 0) p = protocol::http; - else if (::strncasecmp (location.c_str (), "https://", 8) == 0) + else if (strncasecmp (location.c_str (), "https://", 8) == 0) p = protocol::https; return p; -- cgit v1.1