From a56298d56ae67a764e9b9a43c1c568b7125e1c18 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 15 Feb 2002 02:46:13 +0000 Subject: Merge of smbclient print crash bug fix from app head. --- source/smbd/open.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/smbd/open.c b/source/smbd/open.c index 915063a5df1..aab7b5079e6 100644 --- a/source/smbd/open.c +++ b/source/smbd/open.c @@ -629,8 +629,10 @@ files_struct *open_file_shared(connection_struct *conn,char *fname, SMB_STRUCT_S if (conn->printer) { /* printers are handled completely differently. Most of the passed parameters are ignored */ - *Access = DOS_OPEN_WRONLY; - *action = FILE_WAS_CREATED; + if (Access) + *Access = DOS_OPEN_WRONLY; + if (action) + *action = FILE_WAS_CREATED; return print_fsp_open(conn, fname); } -- cgit