summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed bug in enumprinterdrivers.Tim Potter2002-05-141-3/+27
| | | | Added stubs for addprinterdriver and deleteprinterdriver functions.
* Moved PyDict_SetItemString for printer info level structures into conv ↵Tim Potter2002-05-142-2/+6
| | | | functions.
* Added writeprinter rpc command.Tim Potter2002-05-142-0/+63
|
* Added writeprinter command.Tim Potter2002-05-143-0/+36
|
* Change make_spoolss_q_{get,set}printerdata() take a char* and length ratherTim Potter2002-05-141-11/+31
| | | | | | | than a unistr2. Printer data isn't necessarily in unistr format. Tallocate memory to hold returned data when unmarshalling getprinterdata and enumprinterdata replies.
* The cli_spoolss_setprinterdata() function interface changed slightly.Tim Potter2002-05-141-2/+4
|
* Added getprinterdata and enumprinterdata rpc client routines.Tim Potter2002-05-141-42/+186
| | | | The setprinterdata routine was rewritten slightly to take more arguments.
* Added enumprinterdata.Tim Potter2002-05-141-1/+41
|
* General cleanup of compiler warnings etc.Tim Potter2002-05-147-58/+139
|
* Don't store domain with username in secrets.tdbTim Potter2002-05-131-1/+1
|
* Fix bug where setting end of file length to 8 was hitting erroneousJeremy Allison2002-05-131-0/+4
| | | | | | check for OS/2 EA set. This caused Macromedia movie files to not export correctly onto a Samba share. Originally spotted by Michel Stoop stoop@ncg.nl. Jeremy.
* compile fix merge from SAMBA_2_2Gerald Carter2002-05-131-11/+21
|
* Add auto-detect of time server. Uses master browser.Jim McDonough2002-05-131-2/+4
|
* Added entry for winreg extension.Tim Potter2002-05-131-1/+11
| | | | Added extra source file for printerdata routines.
* Updated patch.Tim Potter2002-05-131-13/+14
|
* Removed irritating CR at end of file.Tim Potter2002-05-131-1/+0
|
* Added getprinterdata and setprinterdata functions.Tim Potter2002-05-133-0/+180
|
* Registry module. Only contains REG_xxx constants used by the spoolssTim Potter2002-05-131-0/+83
| | | | printerdata routines at the moment.
* RPC client function for startdocprinter and enddocprinter.Tim Potter2002-05-131-2/+101
|
* Support for client side startdocprinter.Tim Potter2002-05-131-3/+63
| | | | Set useless_ptr = 1 for marshalling smb_io_doc_info() so it actually works.
* Added startdocprinter and enddocprinter.Tim Potter2002-05-134-0/+168
|
* Merge of --set-auth-user updates from 2.2Tim Potter2002-05-131-3/+4
|
* Merge of secrets_init() paranoia fix from 2.2Tim Potter2002-05-131-1/+6
|
* move vsyslog() from snprintf.c to replace.cSimo Sorce2002-05-112-14/+14
| | | | tx Elrond for prosecuting cleanness :)
* merge from SAMBA_2_2Gerald Carter2002-05-111-0/+8
|
* Fix for *BSD linking of VFS modules from "Scot W. Hetzel" <hetzels@westbend.net>Jeremy Allison2002-05-112-316/+318
| | | | Jeremy.
* Fixes for recycle bin VFS for FreeBSD from "Scot W. Hetzel" ↵Jeremy Allison2002-05-112-8/+15
| | | | | | <hetzels@westbend.net>. Jeremy
* Fix to include -Ipopt in getpass test.Jeremy Allison2002-05-113-10/+91
| | | | Jeremy.
* misc merge from SAMBA_2_2Gerald Carter2002-05-101-0/+4
|
* devmode parsing merge from SAMBA_2_2Gerald Carter2002-05-101-29/+74
|
* Allow -c to specify the location of the config file, and fix up some handlingAndrew Bartlett2002-05-101-13/+15
| | | | of non-existant passdb cases.
* Added findsmb to .cvsignore list.Tim Potter2002-05-101-0/+1
|
* Fix for Solaris nscd issue pointed out by Mike GerdtsTim Potter2002-05-104-1/+43
| | | | | <Michael.Gerdts@alcatel.com>. The struct passwd in Solaris contains some extra fields which must be initialised otherwise nscd crashes.
* Removed libtool.m4 includes.Tim Potter2002-05-101-838/+0
|
* Fix the bug that refused to allow IPC$ connection to be idled if a pipeJeremy Allison2002-05-101-0/+17
| | | | | | was open - we now only refuse to allow IPC$ connection to be idled if a handle is open on a pipe. Jeremy.
* Ok, ok, I was too impatient...Jim McDonough2002-05-101-2/+2
|
* Fix build. Changed MSG_PRINTER_UPDATE to MSG_PRINTER_DRVUPGRADE.Jim McDonough2002-05-101-2/+2
| | | | Jeremy, please verify that this was ok...
* Oops. Broke the build be removing MSG_PRINTER_UPDATE. Re-added as nextJeremy Allison2002-05-101-0/+1
| | | | | free printer msg id. Jeremy.
* Converged net group command.Jim McDonough2002-05-091-3/+13
|
* Add ads group add and delete, allowing converged net group command.Jim McDonough2002-05-091-16/+106
| | | | Also update some of the help info.
* Start of net rpc group command. List only right now. Add and delete haveJim McDonough2002-05-091-1/+153
| | | | not been implemented...is it worth the effort?
* Converged help on net group command.Jim McDonough2002-05-092-12/+18
|
* Add ads group account add function.Jim McDonough2002-05-091-0/+33
|
* Merged in printing fixes... There were many missing !Jeremy Allison2002-05-095-13/+152
| | | | Jeremy
* Allowing %S in dfs root paths. Other variables in standard_sub_advanced won'tShirish Kalele2002-05-091-2/+5
| | | | | resolve correctly in dfs referrals which are done over anonymous IPC$. Also allowing dfs roots to be default services.
* NT uses NT_STATUS_OBJECT_NAME_NOT_FOUND not NT_STATUS_NO_SUCH_FILE for ENOENT.Jeremy Allison2002-05-091-1/+1
| | | | Jeremy.
* We were mapping the open of name1/name2 where name1 wasn't a directoryJeremy Allison2002-05-091-1/+1
| | | | | | | (ie. ENOTDIR) to the NT status code NT_STATUS_NOT_A_DIRECTORY. NT seems to use NT_STATUS_OBJECT_PATH_NOT_FOUND. I'm hoping this will fix the access binaries served from a Samba share bug... Jeremy.
* merge from SAMBA_2_2Gerald Carter2002-05-091-1/+1
|
* merge freom SAMBA_2_2Gerald Carter2002-05-091-1/+5
|
* merge from SAMBA_2_2Gerald Carter2002-05-093-8/+8
|