PAM: use boolean_t for config flags

Since we already use boolean_t in the file, we can use it here.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Felix Dörre <felix@dogcraft.de>
Signed-off-by: Val Packett <val@packett.cool>
Closes #14834
This commit is contained in:
Val Packett 2023-05-05 21:56:39 -03:00 committed by Brian Behlendorf
parent c47b708647
commit bd4962b5ac

View File

@ -437,7 +437,7 @@ typedef struct {
char *dsname; char *dsname;
uid_t uid; uid_t uid;
const char *username; const char *username;
int unmount_and_unload; boolean_t unmount_and_unload;
} zfs_key_config_t; } zfs_key_config_t;
static int static int
@ -471,7 +471,7 @@ zfs_key_config_load(pam_handle_t *pamh, zfs_key_config_t *config,
} }
config->uid = entry->pw_uid; config->uid = entry->pw_uid;
config->username = name; config->username = name;
config->unmount_and_unload = 1; config->unmount_and_unload = B_TRUE;
config->dsname = NULL; config->dsname = NULL;
config->homedir = NULL; config->homedir = NULL;
for (int c = 0; c < argc; c++) { for (int c = 0; c < argc; c++) {
@ -482,7 +482,7 @@ zfs_key_config_load(pam_handle_t *pamh, zfs_key_config_t *config,
free(config->runstatedir); free(config->runstatedir);
config->runstatedir = strdup(argv[c] + 12); config->runstatedir = strdup(argv[c] + 12);
} else if (strcmp(argv[c], "nounmount") == 0) { } else if (strcmp(argv[c], "nounmount") == 0) {
config->unmount_and_unload = 0; config->unmount_and_unload = B_FALSE;
} else if (strcmp(argv[c], "prop_mountpoint") == 0) { } else if (strcmp(argv[c], "prop_mountpoint") == 0) {
if (config->homedir == NULL) if (config->homedir == NULL)
config->homedir = strdup(entry->pw_dir); config->homedir = strdup(entry->pw_dir);