Browse Source

credential-osxkeychain: support more protocols

Add protocol imap, imaps, ftp and smtp for credential-osxkeychain.

Signed-off-by: Xidorn Quan <quanxunzhen@gmail.com>
Acked-by: John Szakmeister <john@szakmeister.net>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Xidorn Quan 12 years ago committed by Junio C Hamano
parent
commit
de56ccf799
  1. 12
      contrib/credential/osxkeychain/git-credential-osxkeychain.c

12
contrib/credential/osxkeychain/git-credential-osxkeychain.c

@ -127,10 +127,20 @@ static void read_credential(void)
*v++ = '\0'; *v++ = '\0';


if (!strcmp(buf, "protocol")) { if (!strcmp(buf, "protocol")) {
if (!strcmp(v, "https")) if (!strcmp(v, "imap"))
protocol = kSecProtocolTypeIMAP;
else if (!strcmp(v, "imaps"))
protocol = kSecProtocolTypeIMAPS;
else if (!strcmp(v, "ftp"))
protocol = kSecProtocolTypeFTP;
else if (!strcmp(v, "ftps"))
protocol = kSecProtocolTypeFTPS;
else if (!strcmp(v, "https"))
protocol = kSecProtocolTypeHTTPS; protocol = kSecProtocolTypeHTTPS;
else if (!strcmp(v, "http")) else if (!strcmp(v, "http"))
protocol = kSecProtocolTypeHTTP; protocol = kSecProtocolTypeHTTP;
else if (!strcmp(v, "smtp"))
protocol = kSecProtocolTypeSMTP;
else /* we don't yet handle other protocols */ else /* we don't yet handle other protocols */
exit(0); exit(0);
} }

Loading…
Cancel
Save