summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2015-11-27 13:13:21 -0800
committerRuss Allbery <eagle@eyrie.org>2015-11-27 13:13:21 -0800
commitabcb6c00e82a38a439f43eda8daef1a71f0d9647 (patch)
treeffa4a00626cd1ca1b817bdcf54d32aa6680fed35 /server
parentd15b9bb35bb320ce2d1ebf297ed1ba2fc4e335b1 (diff)
Coding style cleanup in server/config.c
Diffstat (limited to 'server')
-rw-r--r--server/config.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/server/config.c b/server/config.c
index 98c551f..5ef13df 100644
--- a/server/config.c
+++ b/server/config.c
@@ -54,13 +54,9 @@
static char *acl_gput_file = NULL;
#endif
-/*
- * maximum length allowed when converting
- * principal to local name
- */
-#define REMCTL_KRB5_LOCALNAME_MAX_LEN sysconf(_SC_LOGIN_NAME_MAX) < 256 \
- ? 256 \
- : sysconf(_SC_LOGIN_NAME_MAX)
+/* Maximum length allowed when converting a principal to a local name. */
+#define REMCTL_KRB5_LOCALNAME_MAX_LEN \
+ (sysconf(_SC_LOGIN_NAME_MAX) < 256 ? 256 : sysconf(_SC_LOGIN_NAME_MAX))
/* Return codes for configuration and ACL parsing. */
enum config_status {