diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libpam/libpam/pam_static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libpam/libpam/pam_static.c b/contrib/libpam/libpam/pam_static.c index 8073833..aac3e99 100644 --- a/contrib/libpam/libpam/pam_static.c +++ b/contrib/libpam/libpam/pam_static.c @@ -29,7 +29,7 @@ struct pam_module * _pam_open_static_handler(const char *path) if (strchr(clpath, '/')) { /* ignore path and leading "/" */ - clpath = strrchr(lpath, '/') + 1; + clpath = strrchr(clpath, '/') + 1; } /* create copy to muck with (must free before return) */ lpath = _pam_strdup(clpath); |