From 60a7d07d63196d140fed14a75c1c5360f3546905 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 20 Mar 2002 21:55:57 +0000 Subject: Print queue entries *must* have queue names, not numbers - numbers are not identical between different smbds (mr potter, come here and take your medicine.... :-). Jeremy. (This used to be commit 230941d2fbb746d39c00e482e7f600c68aa45efa) --- source3/include/printing.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/printing.h') diff --git a/source3/include/printing.h b/source3/include/printing.h index a4a6a25cb9..b99f2aeffb 100644 --- a/source3/include/printing.h +++ b/source3/include/printing.h @@ -42,7 +42,7 @@ struct printjob { fstring filename; /* the filename used to spool the file */ fstring jobname; /* the job name given to us by the client */ fstring user; /* the user who started the job */ - int snum; /* service number of printer for this job */ + fstring queuename; /* service number of printer for this job */ }; /* Information for print interfaces */ @@ -71,6 +71,6 @@ extern struct printif cups_printif; #define MAX_CACHE_VALID_TIME 3600 #define PRINT_SPOOL_PREFIX "smbprn." -#define PRINT_DATABASE_VERSION 3 +#define PRINT_DATABASE_VERSION 4 #endif /* PRINTING_H_ */ -- cgit