Skip to content

Commit

Permalink
pam_unix: Fix closing curly brace. (#77)
Browse files Browse the repository at this point in the history
This has been overlooked during review of commit dce80b3.

* modules/pam_unix/support.c (_set_ctrl): Fix closing curly brace.

Closes: #77
  • Loading branch information
besser82 authored and ldv-alt committed Nov 22, 2018
1 parent 4da9feb commit b8ba9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/pam_unix/support.c
Expand Up @@ -261,7 +261,7 @@ int _set_ctrl(pam_handle_t *pamh, int flags, int *remember, int *rounds,
unset(UNIX_ALGO_ROUNDS, ctrl);
} else if (*rounds >= 10000000) {
*rounds = 9999999;
{
}
}
}

Expand Down

0 comments on commit b8ba9fa

Please sign in to comment.