Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | fixed the handling of STR_TERMINATE | Andrew Tridgell | 2002-04-16 | 3 | -4/+34 | |
| | | | ||||||
| | * | i forgot to commit these parts of the string handling patch earlier. Sorry. | Andrew Tridgell | 2002-04-16 | 2 | -6/+9 | |
| | | | ||||||
| | * | make sure we don't walk past the end of the current SMB buffer when | Andrew Tridgell | 2002-04-16 | 7 | -45/+49 | |
| | | | | | | | | | | | | | | | pulling a string this might explain a serious filename corruption bug that Quantum QA spotted | |||||
| | * | make sure that we leave the tree unused after disconnecting | Andrew Tridgell | 2002-04-15 | 1 | -0/+4 | |
| | | | ||||||
| | * | Stubs for connect, domain, user, group and alias policy objects. | Tim Potter | 2002-04-15 | 1 | -39/+202 | |
| | | | | | | | | | | | | Wrote samr connect fn. | |||||
| | * | merge from SAMBA_2_2 | Gerald Carter | 2002-04-15 | 1 | -1/+1 | |
| | | | ||||||
| | * | Another patch from jelmer: | Andrew Bartlett | 2002-04-15 | 1 | -31/+37 | |
| | | | | | | | | | | | | | | | | | | | | | Doco for pdbedit and (ugly, but the best we could come up with) fix for compiling pdbedit on some non-gcc compilers. Andrew Bartlett | |||||
| | * | Skeleton for SAMR module. | Tim Potter | 2002-04-15 | 3 | -0/+298 | |
| | | | ||||||
| | * | this fixes the displaying of free disk space for DOS6 clients. Win2000 | Andrew Tridgell | 2002-04-15 | 1 | -14/+37 | |
| | | | | | | | | | | | | | | | changes its behaviour based on the negotiated protocol for the SMBdskattr SMB | |||||
| | * | better handling of DOS LANMAN2.1 protocol | Andrew Tridgell | 2002-04-15 | 1 | -4/+18 | |
| | | | ||||||
| | * | by using a prompter function we can avoid the bug in the MIT kerberos | Andrew Tridgell | 2002-04-15 | 1 | -7/+25 | |
| | | | | | | | | | | | | libraries with handling blank passwords. | |||||
| | * | Merge of print server permission handling fixes from HEAD. | Tim Potter | 2002-04-15 | 2 | -12/+53 | |
| | | | | | | | | | | | | Unit tests rock! | |||||
| | * | Fixed incorrect debug. | Tim Potter | 2002-04-15 | 1 | -1/+1 | |
| | | | ||||||
| | * | Added hex values as comments for the standard access rights. | Tim Potter | 2002-04-15 | 1 | -5/+5 | |
| | | | ||||||
| | * | Rename new_policy_hnd_object() to new_spoolss_policy_hnd_object() | Tim Potter | 2002-04-14 | 2 | -3/+3 | |
| | | | ||||||
| | * | Explicitly return a list in py_ntstatus_tuple() and py_werror_typle(). Not | Tim Potter | 2002-04-14 | 1 | -3/+20 | |
| | | | | | | | | | | | | | | | | | | | | | sure whether these should really be tuples or lists. In open_pipe_creds() raise PyExc_RuntimeError exceptions if the pipe connect function returns an error. | |||||
| | * | Call PyErr_SetString instead of fprintf to stderr. | Tim Potter | 2002-04-14 | 1 | -7/+5 | |
| | | | | | | | | | | | | | | | Don't clean up talloc and cli_state on close printer. They will be destroyed in the handle dealloc function. | |||||
| | * | Shutdown cli_state in the dealloc function. This happens automatically | Tim Potter | 2002-04-14 | 1 | -2/+10 | |
| | | | | | | | | | | | | when a handle object falls out of scope. | |||||
| | * | Added enumerate trusted domains. | Tim Potter | 2002-04-14 | 1 | -1/+44 | |
| | | | ||||||
| | * | Merge from 2_2. | Volker Lendecke | 2002-04-14 | 1 | -0/+9 | |
| | | | | | | | | | | | | Volker | |||||
| * | | Spelling fix. | Tim Potter | 2002-04-24 | 1 | -1/+1 | |
| | | | ||||||
| * | | When doing a non-io open the stat failing is no cause for a debug zero | Jeremy Allison | 2002-04-23 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | to be printed, it just means file not found. Jeremy. | |||||
| * | | Fix for a bug Jerry found with printing where a smbd connection may | Jeremy Allison | 2002-04-23 | 1 | -1/+6 | |
| | | | | | | | | | | | | | | | be idled even with an open pipe. Jeremy. | |||||
| * | | Really fix the Dfs Explorer problem. The previous checkin had the fix commented | Shirish Kalele | 2002-04-23 | 1 | -2/+2 | |
| | | | | | | | | | | | | out! | |||||
| * | | With an NT4.x DC we must have a mutex over the entire login process. | Jeremy Allison | 2002-04-22 | 1 | -12/+43 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | backout minor type in srv_spoolss_nt.c and merge a few changes from HEAD | Gerald Carter | 2002-04-22 | 2 | -12/+14 | |
| | | | | | | | | | | | | to keep things in sync. | |||||
| * | | reenabled the CHECK_PATH_ON_TCONX code path since removing the chdir() | Gerald Carter | 2002-04-22 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | | | | | breaks move_driver_to_download_area() currently. This is only a temporary measure, until I code up a proper solution which incorporates Tridge's observations. | |||||
| * | | Fixing an intermittent issue seen with DFS and Explorer: Sometimes DFS trees | Shirish Kalele | 2002-04-22 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | appear with duplicate intermediate folders without this fix. Apparently clients don't use the PathConsumed count to figure out how much of the requested path is covered on the DFS server. We get around this by terminating the requested path at PathConsumed. | |||||
| * | | enable SPOOLSS_GETPRINTPROCESSORDIRECTORY | Gerald Carter | 2002-04-22 | 1 | -4/+0 | |
| | | | ||||||
| * | | Apparently we have to return "C:\WINNT\System32\spool\PRTPROCS\W32X86" | Gerald Carter | 2002-04-22 | 1 | -8/+2 | |
| | | | | | | | | | | | | | | | for the PrintProcessorDirectory. Really bogus I know, but if we return a UNC path, the driver install can fail. | |||||
| * | | * removed unnecessary prs_align() from relative unicode strings. | Gerald Carter | 2002-04-22 | 2 | -42/+20 | |
| | | | | | | | | | | | | | | | * removed spoolss_smb_io_unistr() since it is no longer needed * few formatting fixes | |||||
| * | | Yes, I think this should be fixed in 2.2.4 as well. Minor bug, minor fix. | Christopher R. Hertel | 2002-04-22 | 1 | -5/+18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Small change to correct the value we place in the DGM_LENGTH field of NBT Datagram messages. We have been counting the full datagram, but it's fairly clear in the RFCs that we should only count the source name, destination name, and payload. We've been overcharging by 14 bytes (the size of the NBT DGM header). This fix brings us in line with what Windows does, and what the RFCs say should be done. I'm a little surprised that this didn't cause any bugs or error messages. I guess no one actually checks this field. | |||||
| * | | Merge chown/ghgrp fix from HEAD. | Jeremy Allison | 2002-04-21 | 3 | -692/+752 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | specversion / device mode fix from APP_HEAD | Gerald Carter | 2002-04-20 | 1 | -9/+4 | |
| | | | ||||||
| * | | We cannot set errno=0 in any of the wrapper calls as this breaks UNIX error | Jeremy Allison | 2002-04-19 | 2 | -8/+0 | |
| | | | | | | | | | | | | | | | returns to the client. Jeremy. | |||||
| * | | Fix different args to sys_fcntl without going varargs.... | Jeremy Allison | 2002-04-19 | 5 | -701/+717 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fixed one more sendto. | Jeremy Allison | 2002-04-19 | 1 | -1/+1 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | When opening a tdb fails - don't expect to be able to do tdb_errstr ! (Doh!). | Jeremy Allison | 2002-04-19 | 1 | -3/+4 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Added sys_fcntl (not to be used everywhere). Added sys_read/sys_write | Jeremy Allison | 2002-04-19 | 7 | -705/+719 | |
| | | | | | | | | | | | | | | | for transfer_file. Jeremy. | |||||
| * | | Fixed sendto in oplock code. | Jeremy Allison | 2002-04-19 | 3 | -3/+20 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fix oplock recvfrom. | Jeremy Allison | 2002-04-19 | 1 | -1/+1 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fix send and recvfrom. | Jeremy Allison | 2002-04-19 | 2 | -12/+27 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | First cut at fixing the EINTR problem...... Still a little more to be done. | Jeremy Allison | 2002-04-19 | 5 | -789/+839 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fixed up NULL ptr derefs. | Jeremy Allison | 2002-04-18 | 1 | -10/+15 | |
| | | | | | | | | | | | | Jeremy | |||||
| * | | Tracked down a very fiddly bug :-). If no PDC available, cli_shutdown was | Jeremy Allison | 2002-04-18 | 1 | -18/+17 | |
| | | | | | | | | | | | | | | | | | | closing fd 0 due to the cli_struct never being initialised.... This was upsetting a tdb that happened to be using fd 0 at the time :-). Jeremy. | |||||
| * | | Fixes for HPUX from Don. | Jeremy Allison | 2002-04-18 | 1 | -0/+19 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fix for HPUX compile from Don. | Jeremy Allison | 2002-04-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | Jeremy. | |||||
| * | | Fix for CR#569 found by Li - XP clients don't bother to set the devmode_ptr | Jeremy Allison | 2002-04-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | in the SetPrinter() call - they send it in the devmode_ctr instead. Jeremy. | |||||
| * | | Found that with XP, clients have started using infolevel 1005 (0x3ED) of | Shirish Kalele | 2002-04-18 | 3 | -4/+6 | |
| | | | | | | | | | | | | | | | | | | | | | NetShareGetInfo to determine offline caching policy for a share. This infolevel used to return only dfs rootness before. Added code to return the policy value as expected by XP. If this is absent, roaming profiles give warnings on XP. | |||||
| * | | Fixed the AFP_Resource:$DATA filename creation bug. | Jeremy Allison | 2002-04-17 | 1 | -251/+265 | |
| | | | | | | | | | | | | Jeremy. |