summaryrefslogtreecommitdiff
path: root/modules/pam_unix
diff options
context:
space:
mode:
authorBjörn Esser <besser82@fedoraproject.org>2018-11-22 17:04:08 +0100
committerDmitry V. Levin <ldv@altlinux.org>2018-11-22 16:53:39 +0000
commitb8ba9fafae478ae96529d61e2ce163b338f9b29b (patch)
tree2d405a8bafd7cb0867ba405a8e1d01f71ac7a294 /modules/pam_unix
parent4da9febc39b955892a30686e8396785b96bb8ba5 (diff)
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')
-rw-r--r--modules/pam_unix/support.c2
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;
- {
+ }
}
}