diff options
author | Matthias Gerstner <matthias.gerstner@suse.de> | 2023-12-27 14:22:48 +0100 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2024-01-03 10:50:38 +0000 |
commit | ddfc1301282fe87e245716b04437422476e8bc35 (patch) | |
tree | e4a7caddaee1d37102d18a1b9c1fbd6353dc4814 /modules/pam_namespace/pam_namespace.c | |
parent | c3d2861800f9af0723e18609ae9852951453d65c (diff) | |
download | pam-ddfc1301282fe87e245716b04437422476e8bc35.tar.gz pam-ddfc1301282fe87e245716b04437422476e8bc35.tar.bz2 pam-ddfc1301282fe87e245716b04437422476e8bc35.zip |
pam_namespace: cleanup_tmpdirs(): use proper error message
Diffstat (limited to 'modules/pam_namespace/pam_namespace.c')
-rw-r--r-- | modules/pam_namespace/pam_namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_namespace/pam_namespace.c b/modules/pam_namespace/pam_namespace.c index b7cdcfa4..40edc9f7 100644 --- a/modules/pam_namespace/pam_namespace.c +++ b/modules/pam_namespace/pam_namespace.c @@ -1833,7 +1833,7 @@ static int cleanup_tmpdirs(struct instance_data *idata) } } else if (pid < 0) { pam_syslog(idata->pamh, LOG_ERR, - "Cannot fork to run namespace init script, %m"); + "Cannot fork to cleanup temporary directory, %m"); rc = PAM_SESSION_ERR; goto out; } |