diff options
author | jacobs <none@none> | 2006-10-02 15:41:02 -0700 |
---|---|---|
committer | jacobs <none@none> | 2006-10-02 15:41:02 -0700 |
commit | f30386f5af4f36ffe1a0fd1dce4bf24e0df267fb (patch) | |
tree | 96dcb66ac5514e50692d7337031533a1103564ea /usr/src/lib/nsswitch/files/common/getprinter.c | |
parent | cce56d57f301601f868d237699859aae4bb9c3f8 (diff) | |
download | illumos-joyent-f30386f5af4f36ffe1a0fd1dce4bf24e0df267fb.tar.gz |
6476321 fix for 6461190 breaks lpstat -p, -o, -v, ... (fix cast)
Diffstat (limited to 'usr/src/lib/nsswitch/files/common/getprinter.c')
-rw-r--r-- | usr/src/lib/nsswitch/files/common/getprinter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/lib/nsswitch/files/common/getprinter.c b/usr/src/lib/nsswitch/files/common/getprinter.c index 62f3cb189c..2db42dbfea 100644 --- a/usr/src/lib/nsswitch/files/common/getprinter.c +++ b/usr/src/lib/nsswitch/files/common/getprinter.c @@ -172,8 +172,8 @@ getent(be, a) nss_status_t status; nss_XbyY_args_t *argp = (nss_XbyY_args_t *)a; - return (_nss_files_XY_printer(be, argp, (files_XY_check_func)0, - (const char *)0)); + return (_nss_files_XY_printer(be, argp, (const char *)0, + (files_XY_check_func)0)); } static nss_status_t |