summaryrefslogtreecommitdiffstats
path: root/source3/printing
Commit message (Collapse)AuthorAgeFilesLines
* source3/printing/pcap.h: fix licence/copyrightGünther Deschner2011-06-101-0/+15
| | | | Guenther
* source3/printing/load.h: fix licence/copyrightGünther Deschner2011-06-101-0/+24
| | | | Guenther
* s3-param Remove special case for global_myname(), rename to lp_netbios_name()Andrew Bartlett2011-06-092-4/+4
| | | | | | | | There is no reason this can't be a normal constant string in the loadparm system, now that we have lp_set_cmdline() to handle overrides correctly. Andrew Bartlett
* s3-talloc Change TALLOC_MEMDUP() to talloc_memdup()Andrew Bartlett2011-06-091-2/+2
| | | | | Using the standard macro makes it easier to move code into common, as TALLOC_MEMDUP isn't standard talloc.
* s3-talloc Change TALLOC_ZERO_P() to talloc_zero()Andrew Bartlett2011-06-091-1/+1
| | | | | Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_P isn't standard talloc.
* s3-talloc Change TALLOC_P() to talloc()Andrew Bartlett2011-06-092-5/+5
| | | | | Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc.
* s3-talloc Change TALLOC_ARRAY() to talloc_array()Andrew Bartlett2011-06-091-1/+1
| | | | | Using the standard macro makes it easier to move code into common, as TALLOC_ARRAY isn't standard talloc.
* Change sys_getcd() to take no arguments and always return malloc'ed memory ↵Jeremy Allison2011-06-011-8/+8
| | | | | | (or NULL). Part of the efforts to remove PATH_MAX on modern systems.
* s3: fix more -Wunused-but-set-variable build warnings.Günther Deschner2011-06-011-2/+1
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Jun 1 00:29:30 CEST 2011 on sn-devel-104
* s3: fix some -Wunused-but-set-variable build warnings.Günther Deschner2011-05-301-4/+0
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Mon May 30 17:41:18 CEST 2011 on sn-devel-104
* Fix bug #8157 - std_pcap_cache_reload() fails to parse a cups printcap file ↵Jeremy Allison2011-05-201-8/+5
| | | | | | | | | | correctly. The parsing code made some strange assumptions about what is a printer name, and what is a comment. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Fri May 20 22:52:23 CEST 2011 on sn-devel-104
* s3-lib Replace StrCaseCmp() with strcasecmp_m()Andrew Bartlett2011-05-181-1/+1
| | | | | | | strcasecmp_m() never needs to call to talloc, and via next_codepoint() still has an ASCII fast-path bypassing iconv() calls. Andrew Bartlett
* s3-printing: remove cups_pull_comment_location from header fileDavid Disseldorp2011-05-161-4/+0
| | | | | | | Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Mon May 16 16:03:57 CEST 2011 on sn-devel-104
* s3-printing: Remove obsolete and unused cups_pull_comment_location().Andreas Schneider2011-05-161-157/+0
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-printing: Get the location info from cups.Günther Deschner2011-05-169-30/+80
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* rpc_server: Always use rpc_pipe_open_interface()Simo Sorce2011-05-131-1/+1
| | | | | | | | | | This way we can configure which rpc service we actually want to connect to. By default it uses an "embedded" interface and calls rpc_pipe_open_internal() Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri May 13 14:40:26 CEST 2011 on sn-devel-104
* s3-printing: make cups_pull_comment_location() work again.Günther Deschner2011-05-111-13/+2
| | | | | | | | | | we deal with lp_cups_server in cups_connect() already, inside the URI all our other cups functions we use ipp://localhost, do the same here. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed May 11 11:36:07 CEST 2011 on sn-devel-104
* s3-printing: Fix double free of cups request.Günther Deschner2011-05-101-4/+0
| | | | | | | | | | | | | | | | We never free the request in our cups api usage except for here. The reason is probably htis (from the cupsDoConnect API docs): "This function sends the IPP request to the specified server, retrying and authenticating as necessary. The request is freed with ippDelete() after receiving a valid IPP response." Revert "Fix a memory leak in cups_pull_comment_location" This reverts commit fee2664dad37536b05ce8bdae3e74d45b257f632. Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue May 10 17:32:58 CEST 2011 on sn-devel-104
* s3-printing: very obvious fix for cups_pull_comment_location().Günther Deschner2011-05-101-1/+1
| | | | | | This has been in there since 2008... Guenther
* s3: only include tdb headers where needed.Günther Deschner2011-05-067-1/+8
| | | | Guenther
* More simple const fixes.Jeremy Allison2011-05-052-3/+3
|
* s3-printing: run minimal_includes.pl.Günther Deschner2011-05-054-9/+0
| | | | Guenther
* Fix warning messages caused by addition of null check in fstrcpy macro.Jeremy Allison2011-05-041-1/+2
|
* s3: include ntdomain.h before including generated srv_ headers.Günther Deschner2011-05-021-0/+1
| | | | Guenther
* s3-printing: include ../librpc/ndr/libndr.h in ads printing.Günther Deschner2011-05-021-0/+1
| | | | Guenther
* s3-printing: avoid using pipes_struct when only session_info is needed.Günther Deschner2011-05-021-12/+11
| | | | Guenther
* s3-proto: move remaining spoolss protos to own header file.Günther Deschner2011-05-022-0/+2
| | | | Guenther
* s3-proto: move rpc_srv_register protos and structs to town headerfile.Günther Deschner2011-05-021-0/+1
| | | | Guenther
* Fix compiler warning in debug message.Jeremy Allison2011-04-211-2/+2
|
* s3-smbd: fix the AIX 5.3 build.Günther Deschner2011-04-201-0/+1
| | | | | | (AIX defines open to be open64) Guenther
* s3-rpc_client: add and use rpc_client/rpc_client.h.Günther Deschner2011-04-132-0/+2
| | | | Guenther
* s3-printing: Use become_user_by_session() function.Andreas Schneider2011-04-111-3/+3
| | | | | | | | | | We create a fake connection here and don't have an vuid. So work with the session_info directly here. Signed-off-by: Jeremy Allison <jra@samba.org> Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Mon Apr 11 22:56:12 CEST 2011 on sn-devel-104
* s3: Fix print_spool_endVolker Lendecke2011-04-051-12/+0
| | | | | We have to use the spoolss pipe instance opened in print_spool_open, otherwise the spoolss server won't be able to find the right printer and job.
* s3-includes: only include ntdomain.h where needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-messages: make ndr_messaging.h part of messages.h.Günther Deschner2011-03-304-4/+0
| | | | Guenther
* s3-messages: only include messages.h where needed.Günther Deschner2011-03-304-0/+4
| | | | Guenther
* s3-auth: printing needs auth.hGünther Deschner2011-03-304-0/+4
| | | | Guenther
* s3-locking: move locking prototypes out of proto.h.Günther Deschner2011-03-301-0/+1
| | | | | | Will later become part of locking.h Guenther
* s3: printing needs parts of smbd.Günther Deschner2011-03-303-0/+3
| | | | Guenther
* s3: include smbd/smbd.h where needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-passdb: use passdb headers where needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* registry: create and use shared libcli/registry/util_reg.h header.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-includes: only include system/filesys.h when needed.Günther Deschner2011-03-307-0/+7
| | | | Guenther
* s3-includes: only include system/passwd.h when needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-includes: only include system/syslog.h when needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-spoolssd: Register spoolssd endpoints.Andreas Schneider2011-03-291-0/+8
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-spoolssd: Fixed logfile creation.Andreas Schneider2011-03-291-2/+11
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-spoolssd: Added missing include.Andreas Schneider2011-03-291-0/+2
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-spoolssd: Pass down event and messanging context.Andreas Schneider2011-03-291-20/+42
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* s3-spoolssd: Fixed reopening of logs.Andreas Schneider2011-03-291-8/+10
| | | | | | | Everytime the log was reopened a .spoolssd has been appended which resulted in long file names. Signed-off-by: Günther Deschner <gd@samba.org>