summaryrefslogtreecommitdiff
path: root/libpam/pam_handlers.c
diff options
context:
space:
mode:
authorThorsten Kukuk <kukuk@thkukuk.de>2005-09-17 16:34:20 +0000
committerThorsten Kukuk <kukuk@thkukuk.de>2005-09-17 16:34:20 +0000
commit74a4f533ce23d44dc5fded7a60caef447039d3fd (patch)
treefb20faeedc8f1c239701063ef5ac532cec3251f9 /libpam/pam_handlers.c
parentd8992ad33da0910fda576dbac8a44fa4a0774a32 (diff)
Relevant BUGIDs: none
Purpose of commit: bugfix Commit summary: --------------- Fix code for which gcc4.1 prints warnings
Diffstat (limited to 'libpam/pam_handlers.c')
-rw-r--r--libpam/pam_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam/pam_handlers.c b/libpam/pam_handlers.c
index 76af72c4..378c6cee 100644
--- a/libpam/pam_handlers.c
+++ b/libpam/pam_handlers.c
@@ -587,7 +587,7 @@ extract_modulename(const char *mod_path)
if (p == NULL)
p = mod_path;
else
- *p++;
+ p++;
if ((retval = strdup (p)) == NULL)
return NULL;