From 6d2d8f54446627dbdc15edbdb60d65a7263012b5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 4 Jun 2012 18:15:25 +0200 Subject: [PATCH] s3:printing: make struct print_file_data private to printspoolss.c metze --- source3/include/smb.h | 9 --------- source3/printing/printspoolss.c | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source3/include/smb.h b/source3/include/smb.h index 88544b3c413..fc44219ed72 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -189,15 +189,6 @@ struct notify_change_buf { struct notify_change_request *requests; }; -struct print_file_data { - char *svcname; - char *docname; - char *filename; - struct policy_handle handle; - uint32_t jobid; - uint16 rap_jobid; -}; - typedef struct files_struct { struct files_struct *next, *prev; int fnum; diff --git a/source3/printing/printspoolss.c b/source3/printing/printspoolss.c index 2cb805d1467..4f153f3da82 100644 --- a/source3/printing/printspoolss.c +++ b/source3/printing/printspoolss.c @@ -25,6 +25,15 @@ #include "smbd/globals.h" #include "../libcli/security/security.h" +struct print_file_data { + char *svcname; + char *docname; + char *filename; + struct policy_handle handle; + uint32_t jobid; + uint16 rap_jobid; +}; + void print_spool_terminate(struct connection_struct *conn, struct print_file_data *print_file); -- 2.11.4.GIT