소스 검색

auth: fixed improper whitespacing

(cherry picked from commit 20231f4936b5f79bcb2e3f64985953888391e570)
Daniel-Constantin Mierla 10 년 전
부모
커밋
6cd8cdc80e
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      modules/auth/nonce.c

+ 4 - 4
modules/auth/nonce.c

@@ -357,10 +357,10 @@ int check_nonce(auth_body_t* auth, str* secret1, str* secret2,
 		   different length (for example because of different auth.
 		   different length (for example because of different auth.
 		   checks)..  Therefore we force credentials to be rebuilt by UAC
 		   checks)..  Therefore we force credentials to be rebuilt by UAC
 		   without prompting for password */
 		   without prompting for password */
-		/* if current time is less than start time, reset the start time 
-            	(e.g., after start, the system clock was set in the past) */ 
-        	t=time(0); 
-        	if (t < up_since) 
+		/* if current time is less than start time, reset the start time
+		 * (e.g., after start, the system clock was set in the past) */
+		t=time(0);
+		if (t < up_since)
 			up_since = t;
 			up_since = t;
 		if (since < t)
 		if (since < t)
 			return 4; 
 			return 4;