diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-01 05:21:19 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-01 05:21:19 +0000 |
commit | 5161c61bc7d2e3c8ee370bdedd755580445a2107 (patch) | |
tree | 7253d8ebfddb2edccb4c25ea49472916b2b2f790 /source3/printing | |
parent | 865e8a3910ebab04ec83c33280bbbbdb00e33518 (diff) | |
download | samba-5161c61bc7d2e3c8ee370bdedd755580445a2107.tar.gz samba-5161c61bc7d2e3c8ee370bdedd755580445a2107.tar.bz2 samba-5161c61bc7d2e3c8ee370bdedd755580445a2107.zip |
Fixed a couple of getpwXX calls that were not going through the sys_getpwXX
cache.
Jeremy.
(This used to be commit a648935ae93f781aedba8f89b0071a24e42f4543)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 32014f062c..a2337c25f3 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -378,7 +378,7 @@ static uint32 get_correct_cversion(fstring architecture, fstring driverpath_in, } become_root(); - pass = getpwuid(user->uid); + pass = sys_getpwuid(user->uid); if(pass == NULL) { DEBUG(0,("get_correct_cversion: Unable to get passwd entry for uid %u\n", (unsigned int)user->uid )); @@ -1109,7 +1109,7 @@ BOOL move_driver_to_download_area(NT_PRINTER_DRIVER_INFO_LEVEL driver_abstract, get_short_archi(architecture, driver->environment); become_root(); - pass = getpwuid(user->uid); + pass = sys_getpwuid(user->uid); if(pass == NULL) { DEBUG(0,("move_driver_to_download_area: Unable to get passwd entry for uid %u\n", (unsigned int)user->uid )); |