Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added print_freelist command. | Jeremy Allison | 2000-12-02 | 2 | -0/+38 |
| | | | | Jeremy. | ||||
* | change the split threahold for the free list to prevent freelist | Andrew Tridgell | 2000-12-02 | 1 | -1/+1 |
| | | | | fragmentation | ||||
* | fixed messaging bug - use strlen() instead of sizeof() in key length | Andrew Tridgell | 2000-12-02 | 1 | -2/+2 |
| | |||||
* | Allow zero length smb.conf files. | Tim Potter | 2000-12-01 | 1 | -2/+0 |
| | |||||
* | Run configure script using dirname of $0. This allows configure.developer | Tim Potter | 2000-12-01 | 1 | -1/+1 |
| | | | | to be run when the build directory != source directory. | ||||
* | Use lp_codepagedir() instead of CODEPAGEDIR when loading the unicode map. | Tim Potter | 2000-12-01 | 1 | -2/+3 |
| | | | | Found by Joseph Cheek <joseph@cheek.com> | ||||
* | Code to read & return POSIX ACLs as NT ACLs. Close to test on Linux. | Jeremy Allison | 2000-12-01 | 1 | -74/+95 |
| | | | | Jeremy. | ||||
* | Keep syncing up POSIX ACL work... | Jeremy Allison | 2000-11-30 | 1 | -110/+111 |
| | | | | Jeremy. | ||||
* | Work in progress, doesn't compile. Adding the POSIX ACL mapping.... | Jeremy Allison | 2000-11-30 | 1 | -22/+198 |
| | | | | Jeremy. | ||||
* | alignment issues. | Jean-François Micouleau | 2000-11-29 | 2 | -28/+35 |
| | | | | | | I hate that job ... J.F. | ||||
* | First Release of the DocBook 'source'. | David Bannon | 2000-11-28 | 3 | -0/+1816 |
| | |||||
* | include/dlinklist.h: Added '{' '}' around DLIST_PROMOTE so it can be used as ↵ | Jeremy Allison | 2000-11-28 | 3 | -62/+87 |
| | | | | | | | | | | a single statement after an 'if'. Tracking this down took 4 hours from my life and ANDREW I WANT THEM BACK !!!!! :-). include/smb.h smbd/password.c: Fixed the bug veritas reported with realloc of the validated_users array growing without bounds. This is now a linked list as god (Andrew) intended :-). Jeremy. | ||||
* | PDC docs, made from DocBook source, comments ? | David Bannon | 2000-11-28 | 4 | -0/+5879 |
| | |||||
* | Ran DFS on Linux and found that readlink() on Linux does not append NUL | Shirish Kalele | 2000-11-28 | 1 | -1/+3 |
| | | | | to the link read. So add a NUL.. | ||||
* | passdb/secrets.c passdb/smbpassfile.c smbd/server.c : Actually *use* the code | Jeremy Allison | 2000-11-27 | 5 | -32/+37 |
| | | | | | | | written to transition from an old DOMAIN.MACHINE.MAC file to secrets.tdb. printing/nt_printing.c: Fix case insensitive name lookups for driver files. John - this should fix the Win9x/WinME problem correctly. Jeremy. | ||||
* | Fixed messaging so main smbd can get lib/message.c messages. | Jeremy Allison | 2000-11-27 | 1 | -0/+8 |
| | | | | Jeremy. | ||||
* | Removed unnessesary init. | Jeremy Allison | 2000-11-27 | 1 | -1/+1 |
| | | | | Jeremy. | ||||
* | fixed a potential locking deadlock in tdb | Andrew Tridgell | 2000-11-27 | 1 | -1/+1 |
| | |||||
* | This should fix Office failing to print to "FILE:". | Jeremy Allison | 2000-11-24 | 1 | -3/+3 |
| | | | | Jeremy. | ||||
* | Tar fixes from Craig Barratt craig@arraycomm.com. | Jeremy Allison | 2000-11-22 | 2 | -2/+4 |
| | | | | Jeremy. | ||||
* | o fixed logon script problems (wrong len in reply to net_sam_logon for | Gerald Carter | 2000-11-22 | 3 | -9/+10 |
| | | | | | | | | | | | | | | | | | | a few strings). I was the one who broke it obviously. o changed a few more defaults in the smbpasswd backend with respect to times. Now the logon time becomes '0' and the pass_can_change_time is set ot the same as pass_last_set_time o change Get_Pwnam() call in local_lookup_name to sys_getpwnam() as it did not seem necessary to try case permutations in the username. Tim, I think this was your code, so you might want to double check me. -- jerry | ||||
* | Free talloc'ed memory from the main smbd. Patch from Rich Bollinger, Elliott ↵ | Jeremy Allison | 2000-11-22 | 1 | -0/+3 |
| | | | | | | Company Jeremy. | ||||
* | Changes from APPLIANCE_HEAD: | David O'Neill | 2000-11-22 | 1 | -4/+4 |
| | | | | - Add code to test equivalence of private data in NT_DEVICEMODE | ||||
* | ADDPRINTERDRIVER info level 6 fix - this is dynamic depending | Jeremy Allison | 2000-11-22 | 1 | -7/+9 |
| | | | | | on a field in the struct - that's why it was so hard to find. Jeremy. | ||||
* | Don't forget to convert into UNIX character set before calling | Jeremy Allison | 2000-11-21 | 1 | -1/+1 |
| | | | | | winbindd. Jeremy. | ||||
* | combined 2 if statments which used the same condition | Gerald Carter | 2000-11-21 | 1 | -3/+5 |
| | | | | -- jerry | ||||
* | make proto | Gerald Carter | 2000-11-21 | 1 | -16/+32 |
| | |||||
* | Another large patch for the passdb rewrite. | Gerald Carter | 2000-11-21 | 12 | -869/+902 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | o added BOOL own_memory flag in SAM_ACCOUNT so we could use static memory for string pointer assignment or allocate a new string o added a reference TDB passdb backend. This is only a reference and should not be used in production because - RID's are generated using the same algorithm as with smbpasswd - a TDB can only have one key (w/o getting into problems) and we need three. Therefore the pdb_sam-getpwuid() and pdb_getsampwrid() functions are interative searches :-( we need transaction support, multiple indexes, and a nice open source DBM. The Berkeley DB (from sleepycat.com seems to fit this criteria now) o added a new parameter "private dir" as many places in the code were using lp_smb_passwd_file() and chopping off the filename part. This makes more sense to me and I will docuement it in the man pages o Ran through Insure-lite and corrected memory leaks. Need for a public flogging this time Jeremy (-: -- jerry | ||||
* | Fix for off-by-one StrnCpy. | Jeremy Allison | 2000-11-21 | 1 | -1/+1 |
| | | | | Jeremy. | ||||
* | Fix for updating of print queues changed from a local box. Essentially, | Jeremy Allison | 2000-11-21 | 4 | -21/+54 |
| | | | | | | this makes sure that the change messages sent to ourselves are handled synchronously w.r.t. other smb packets incoming. Jeremy. | ||||
* | Fix from John Reilly for equivalence tests. | Jeremy Allison | 2000-11-17 | 2 | -77/+80 |
| | | | | Jeremy. | ||||
* | we don't need the separate lp_status() connection records any more | Andrew Tridgell | 2000-11-17 | 1 | -12/+0 |
| | |||||
* | fixed the problem with messages not getting through | Andrew Tridgell | 2000-11-17 | 3 | -37/+28 |
| | | | | | | | | | | the problem had nothing to do with being your own pid, it was instead a problem with IPC$ connections not being registered in the connections database and an incorrect test for -1 in the messaging code. These changes also mean that IPC$ shares now show up in smbstatus. That is probably a good thing. | ||||
* | Fix for memory leak when adding driver. | Jeremy Allison | 2000-11-17 | 4 | -12/+14 |
| | | | | Jeremy. | ||||
* | support smbcontrol sending messages to itself (for testing purposes) | Andrew Tridgell | 2000-11-17 | 1 | -0/+2 |
| | |||||
* | save and restore errno in select | Andrew Tridgell | 2000-11-17 | 1 | -1/+5 |
| | |||||
* | Delete queue on empty. | Jeremy Allison | 2000-11-17 | 1 | -2/+7 |
| | | | | Jeremy. | ||||
* | John Reillys fix for de-registering broadcast names (NT doesn't do this). | Jeremy Allison | 2000-11-17 | 1 | -0/+4 |
| | | | | Jeremy. | ||||
* | Fix for incorrect break using wrong offset when updating a form. | Jeremy Allison | 2000-11-17 | 1 | -6/+4 |
| | | | | Jeremy. | ||||
* | the duplicate checking code will cause unaligned accesses on non-intel | Andrew Tridgell | 2000-11-17 | 1 | -4/+4 |
| | | | | processors. Fixed. | ||||
* | use process_exists() not kill(pid, 0) | Andrew Tridgell | 2000-11-17 | 1 | -1/+1 |
| | |||||
* | Fix for a problem with the new messaging system. If a sender is using the | Jeremy Allison | 2000-11-16 | 9 | -36/+99 |
| | | | | | | | | | | | | | | messaging system as a notification mechanism, and the speed of notification greatly exceeds the speed of message recovery, then you get a massively (>75Mb) growing tdb. If the message is a simple notification, then the message is static, and you only need one of them in transit to a target process at any one time. This patch adds a BOOL "allow_duplicates" to the message_send_XX primitives. If set to False, then before sending a message the sender checks the existing message queue for a target pid for a duplicate of this message, and doesn't add to it if one already exists. Also added code into msgtest.c to test this. Jeremy. | ||||
* | Fix for plaintext passwords from Pat Sandfort @ HP. | Jeremy Allison | 2000-11-16 | 1 | -3/+6 |
| | | | | Jeremy. | ||||
* | Fix from Jim McDonough @ IBM for OS/2 clients. | Jeremy Allison | 2000-11-16 | 2 | -0/+11 |
| | | | | Jeremy. | ||||
* | Changes from APPLIANCE_HEAD: | David O'Neill | 2000-11-16 | 1 | -0/+2 |
| | | | | - add empty README file for vlp. Blame Tim. =) | ||||
* | Ok - fixed a bug in our levelII oplock code. We need to break a level II on | Jeremy Allison | 2000-11-16 | 14 | -165/+360 |
| | | | | | | | | | a byte range lock (write lock only, but Win2k breaks on read lock also so I do the same) - if you think about why, this is obvious. Also fixed our client code to do level II oplocks, if requested, and fixed the code where we would assume the client wanted level II if it advertised itself as being level II capable - it may not want that. Jeremy. | ||||
* | Uninitialized memory read fixes. | Jeremy Allison | 2000-11-15 | 1 | -3/+7 |
| | | | | | open_file_shared takes a DOS pathname, not a UNIX one. Jeremy. | ||||
* | Tuyrn debug timestamps on by default. | Jeremy Allison | 2000-11-15 | 2 | -5/+17 |
| | | | | | Add Tim's lpq race fix. Jeremy. | ||||
* | Merge from appliance head of JR's changes for driver versioning. | Jeremy Allison | 2000-11-14 | 9 | -269/+869 |
| | | | | Jeremy. | ||||
* | - fix "declaration of 'time' shadows global declaration" warning. | David O'Neill | 2000-11-14 | 2 | -18/+18 |
| |