From 4e5bf481fba36655e8fc8e04f6f67ba17dcb9844 Mon Sep 17 00:00:00 2001 From: Jean-François Micouleau Date: Mon, 3 May 1999 22:04:02 +0000 Subject: last part of RPC api change. and of rpcclient eventlog funtion Jean Francois (This used to be commit 7fc8659e83bf0269df297016beac6793ff0bdf32) --- source3/printing/nt_printing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 75dd2d2551..76b9ee909d 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -93,7 +93,7 @@ get the nt drivers list open the rectory and look-up the matching names ****************************************************************************/ -int get_ntdrivers(fstring **list, char *architecture) +int get_ntdrivers(connection_struct *conn, fstring **list, char *architecture) { void *dirp; char *dpname; @@ -106,7 +106,7 @@ int get_ntdrivers(fstring **list, char *architecture) DEBUG(5,("Getting the driver list from directory: [%s]\n", lp_nt_drivers_file())); *list=NULL; - dirp = OpenDir(NULL, lp_nt_drivers_file(), False); + dirp = OpenDir(conn, lp_nt_drivers_file(), False); if (!dirp) { -- cgit