From: Stefan Hajnoczi Date: Thu, 8 Nov 2018 11:15:25 +0000 (+0000) Subject: get_maintainer: use 'https://' instead of 'git://' X-Git-Tag: qemu-xen-4.13.0-rc1~561 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=86e6010a7af943e729964b7af6c4192deb8010b4;p=qemu-xen.git get_maintainer: use 'https://' instead of 'git://' When you clone the repository without previous commit history, 'git://' doesn't protect from man-in-the-middle attacks. HTTPS is more secure since the client verifies the server certificate. Reported-by: Jann Horn Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Signed-off-by: Stefan Hajnoczi Reviewed-by: Michael S. Tsirkin Reviewed-by: Cornelia Huck Reviewed-by: Alex Bennée Message-id: 20181108111531.30671-3-stefanha@redhat.com Signed-off-by: Peter Maydell --- diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl index 43fb5f512f..71415e3c70 100755 --- a/scripts/get_maintainer.pl +++ b/scripts/get_maintainer.pl @@ -1376,7 +1376,7 @@ sub vcs_exists { warn("$P: No supported VCS found. Add --nogit to options?\n"); warn("Using a git repository produces better results.\n"); warn("Try latest git repository using:\n"); - warn("git clone git://git.qemu.org/qemu.git\n"); + warn("git clone https://git.qemu.org/git/qemu.git\n"); $printed_novcs = 1; } return 0;