summaryrefslogtreecommitdiff
path: root/git-send-email.perl
diff options
context:
space:
mode:
authorThomas Rast <tr@thomasrast.ch>2013-12-01 22:48:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-12-04 19:45:30 (GMT)
commit979e652a18eea8e865777239f11c89795d969211 (patch)
treec9c0e02b3ca9ee833f55fbd24b14207352aba7ff /git-send-email.perl
parentd4d9653b5401b28dd88a84bd1bf1d269b8acccf6 (diff)
downloadgit-979e652a18eea8e865777239f11c89795d969211.zip
git-979e652a18eea8e865777239f11c89795d969211.tar.gz
git-979e652a18eea8e865777239f11c89795d969211.tar.bz2
send-email: --smtp-ssl-cert-path takes an argument
35035bb (send-email: be explicit with SSL certificate verification, 2013-07-18) forgot to specify that --smtp-ssl-cert-path takes a string argument. This means that the option could not actually be used as intended. Presumably noone noticed because it's much easier to set it through configs anyway. Add the required "=s". Signed-off-by: Thomas Rast <tr@thomasrast.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index f7468b6..9f31c68 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -291,7 +291,7 @@ my $rc = GetOptions("h" => \$help,
"smtp-pass:s" => \$smtp_authpass,
"smtp-ssl" => sub { $smtp_encryption = 'ssl' },
"smtp-encryption=s" => \$smtp_encryption,
- "smtp-ssl-cert-path" => \$smtp_ssl_cert_path,
+ "smtp-ssl-cert-path=s" => \$smtp_ssl_cert_path,
"smtp-debug:i" => \$debug_net_smtp,
"smtp-domain:s" => \$smtp_domain,
"identity=s" => \$identity,