whitespace cleanup: no space first in conditionals
"if(a)" is our style, not "if( a )"
This commit is contained in:
@@ -4447,8 +4447,8 @@ static CURLcode set_userpass(struct connectdata *conn,
|
||||
const char *user, const char *passwd)
|
||||
{
|
||||
/* If our protocol needs a password and we have none, use the defaults */
|
||||
if( (conn->handler->protocol & (CURLPROTO_FTP|CURLPROTO_IMAP)) &&
|
||||
!conn->bits.user_passwd) {
|
||||
if((conn->handler->protocol & (CURLPROTO_FTP|CURLPROTO_IMAP)) &&
|
||||
!conn->bits.user_passwd) {
|
||||
|
||||
conn->user = strdup(CURL_DEFAULT_USER);
|
||||
if(conn->user)
|
||||
|
||||
Reference in New Issue
Block a user