diff options
author | Tobias Stoeckmann <tobias@stoeckmann.org> | 2023-11-11 11:12:28 +0100 |
---|---|---|
committer | Dmitry V. Levin <github.dl@altlinux.org> | 2023-11-12 19:20:20 +0000 |
commit | 79f97b5dfddbd54942036851e49c369502689853 (patch) | |
tree | 02dbd9aeb3b28431f460a510bbbc228e2e308654 /libpam/pam_misc.c | |
parent | b0538e2c35bde47cec0734cdb46f33e4cb759865 (diff) | |
download | pam-79f97b5dfddbd54942036851e49c369502689853.tar.gz pam-79f97b5dfddbd54942036851e49c369502689853.tar.bz2 pam-79f97b5dfddbd54942036851e49c369502689853.zip |
libpam: remove function prefixes in debug messages
The D macro itself already adds the function names.
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Diffstat (limited to 'libpam/pam_misc.c')
-rw-r--r-- | libpam/pam_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam/pam_misc.c b/libpam/pam_misc.c index 29147ce1..4c53451f 100644 --- a/libpam/pam_misc.c +++ b/libpam/pam_misc.c @@ -175,7 +175,7 @@ int _pam_mkargv(const char *s, char ***argv, int *argc) int count=0; #endif - D(("_pam_mkargv called: %s",s)); + D(("called: %s",s)); *argc = 0; |