From 60c47285941490a5cc91aada4a7f0cfbbc42561d Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 27 May 2012 15:39:45 -0700 Subject: [PATCH] VIM uses spaces as tabs and that doesn't comply with the coding standard. I think I'd fixed it so it's using real tabs now. --- ext/curl/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/curl/interface.c b/ext/curl/interface.c index c066d6be0e..14836cc5ab 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -2219,7 +2219,7 @@ static int _php_curl_setopt(php_curl *ch, long option, zval **zvalue, zval *retu case CURLOPT_DNS_SERVERS: #endif #if LIBCURL_VERSION_NUM >= 0x071900 /* Available since 7.25.0 */ - case CURLOPT_MAIL_AUTH: + case CURLOPT_MAIL_AUTH: #endif { #if LIBCURL_VERSION_NUM < 0x071100 -- 2.50.1