diff options
author | des <des@FreeBSD.org> | 2004-02-10 10:13:21 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2004-02-10 10:13:21 +0000 |
commit | 18879fb0df9eb419a9030e9cc9283dadead8e8a2 (patch) | |
tree | a526662b6e2120dbcf08dd58f0ceba4c7f619f4e /lib/libpam/modules/pam_unix/pam_unix.c | |
parent | 32e4f5ade0ed225d6b9ad3f692513f2d472853e0 (diff) | |
download | FreeBSD-src-18879fb0df9eb419a9030e9cc9283dadead8e8a2.zip FreeBSD-src-18879fb0df9eb419a9030e9cc9283dadead8e8a2.tar.gz |
Fix numerous constness and aliasing issues.
Diffstat (limited to 'lib/libpam/modules/pam_unix/pam_unix.c')
-rw-r--r-- | lib/libpam/modules/pam_unix/pam_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpam/modules/pam_unix/pam_unix.c b/lib/libpam/modules/pam_unix/pam_unix.c index 26e4365..e45a777 100644 --- a/lib/libpam/modules/pam_unix/pam_unix.c +++ b/lib/libpam/modules/pam_unix/pam_unix.c @@ -262,7 +262,7 @@ pam_sm_chauthtok(pam_handle_t *pamh, int flags, { #ifdef YP struct ypclnt *ypclnt; - const void *yp_domain, *yp_server; + void *yp_domain, *yp_server; #endif char salt[SALTSIZE + 1]; login_cap_t * lc; |