Skip to content

Commit

Permalink
auth: fixed improper whitespacing
Browse files Browse the repository at this point in the history
(cherry picked from commit 20231f4)
  • Loading branch information
miconda committed Sep 8, 2015
1 parent 0785e41 commit 6cd8cdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/auth/nonce.c
Expand Up @@ -357,10 +357,10 @@ int check_nonce(auth_body_t* auth, str* secret1, str* secret2,
different length (for example because of different auth.
checks).. Therefore we force credentials to be rebuilt by UAC
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;
if (since < t)
return 4;
Expand Down

0 comments on commit 6cd8cdc

Please sign in to comment.