diff options
author | Björn Esser <besser82@fedoraproject.org> | 2018-11-22 17:04:08 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2018-11-22 16:53:39 +0000 |
commit | b8ba9fafae478ae96529d61e2ce163b338f9b29b (patch) | |
tree | 2d405a8bafd7cb0867ba405a8e1d01f71ac7a294 /modules/pam_unix/support.c | |
parent | 4da9febc39b955892a30686e8396785b96bb8ba5 (diff) | |
download | pam-b8ba9fafae478ae96529d61e2ce163b338f9b29b.tar.gz pam-b8ba9fafae478ae96529d61e2ce163b338f9b29b.tar.bz2 pam-b8ba9fafae478ae96529d61e2ce163b338f9b29b.zip |
pam_unix: Fix closing curly brace. (#77)
This has been overlooked during review of commit dce80b3f11b3.
* modules/pam_unix/support.c (_set_ctrl): Fix closing curly brace.
Closes: https://github.com/linux-pam/linux-pam/issues/77
Diffstat (limited to 'modules/pam_unix/support.c')
-rw-r--r-- | modules/pam_unix/support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_unix/support.c b/modules/pam_unix/support.c index 753e5f89..8cbc4217 100644 --- a/modules/pam_unix/support.c +++ b/modules/pam_unix/support.c @@ -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; - { + } } } |