Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | s3-spoolss: make it more obvious what winreg_create_printer() does. | Günther Deschner | 2011-01-21 | 1 | -5/+1 | |
| | | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Jan 21 11:43:29 CET 2011 on sn-devel-104 | |||||
* | s3-rpcclient: rename duplicate enumkey command to winreg_enumkey. | Günther Deschner | 2011-01-21 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | s3-spoolss: as smbtorture testing proves: devmode size is the size of the ↵ | Günther Deschner | 2011-01-21 | 1 | -1/+1 | |
| | | | | | | | | devicemode minus the driverdata extra size. Jeremy, please check. Guenther | |||||
* | s3-spoolss: disallow storing an invalid devmode size. | Günther Deschner | 2011-01-21 | 1 | -0/+6 | |
| | | | | Guenther | |||||
* | s3:vfs:shadow_copy2: fix indentation in _SHADOW2_NEXT_SMB_FNAME | Michael Adam | 2011-01-21 | 1 | -2/+2 | |
| | | | | | Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Fri Jan 21 10:57:45 CET 2011 on sn-devel-104 | |||||
* | s3:vfs:shadow_copy2: Fix shadow-copy module for drag&drop from a snapshot | Volker Lendecke | 2011-01-21 | 1 | -0/+4 | |
| | | | | | | | We have to return NT_STATUS_NOT_SAME_DEVICE to trigger the Windows client to start a copy itself. Unbeknownst to us via the ACLs snapshots are read-only, so a rename would trigger a EACCES. Unfortunately the MacOS/X finder does not do the smart NOT_SAME_DEVICE fallback that Windows does. | |||||
* | s3:registry correct a debug level | Christian Ambach | 2011-01-21 | 1 | -1/+1 | |
| | | | | this is not a level 0 message, move it to 10 | |||||
* | s3:winbind: Protect against invalid winbindd_cache entries in lookuprids | Volker Lendecke | 2011-01-21 | 1 | -1/+2 | |
| | ||||||
* | s3-net: add roundtrip tests for registry import/export | Gregor Beck | 2011-01-21 | 1 | -0/+88 | |
| | ||||||
* | s3: Fix the code to immediately disconnect from a non-working ctdbd | Volker Lendecke | 2011-01-21 | 1 | -0/+1 | |
| | ||||||
* | s3:vfs:gpfs: fix logic when gpfs:winattr is false (the default!) | Rusty Russell | 2011-01-21 | 1 | -1/+11 | |
| | | | | | | | | | | | | | | | | On my autocluster setup, it's not set. Maybe it should be? Otherwise smbclient and some Windows client programs will get errors like: # smbclient //localhost/data -Uadministrator%XXX Domain=[VSOFS1] OS=[Unix] Server=[Samba 3.4.2-ctdb-10] smb: \> put /etc/resolv.conf resolv.conf NT_STATUS_ACCESS_DENIED closing remote file \resolv.conf smb: \> Caused by attempting to update the time on close. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Michael Adam <obnox@samba.org> | |||||
* | s3:librpc: remove prototype of dcerpc_binding_handle_set_ref_alloc() | Stefan Metzmacher | 2011-01-21 | 1 | -3/+0 | |
| | | | | | | This function doesn't exist anymore. metze | |||||
* | Remove all uses of "./" in pathnames - make canonical. This will become ↵ | Jeremy Allison | 2011-01-21 | 1 | -50/+78 | |
| | | | | | | | important when we need to guarantee canonical names for hashing. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Fri Jan 21 02:59:56 CET 2011 on sn-devel-104 | |||||
* | Ensure we don't use "./" in findfirst pathnames. Use a directory open of "." ↵ | Jeremy Allison | 2011-01-20 | 1 | -4/+8 | |
| | | | | instead. | |||||
* | Make processing of incoming stream rename paths common between reply_mv and ↵ | Jeremy Allison | 2011-01-20 | 3 | -23/+48 | |
| | | | | ntrename. Ensure we don't depend on "./" in the streams module. | |||||
* | s3:smbd: use anonymous_shared_free() for shared memory signing state | Stefan Metzmacher | 2011-01-20 | 1 | -0/+7 | |
| | | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Thu Jan 20 07:48:29 CET 2011 on sn-devel-104 | |||||
* | lib/util: s/allocate_anonymous_shared/anonymous_shared_allocate/ | Stefan Metzmacher | 2011-01-20 | 1 | -1/+1 | |
| | | | | metze | |||||
* | s3-param: Fixed code block in max_open_files(). | Andreas Schneider | 2011-01-19 | 1 | -1/+1 | |
| | | | | | | | | When the HAVE_GETRLIMIT and RLIMIT_NOFILE macros are defined the block isn't closed. Autobuild-User: Andreas Schneider <asn@samba.org> Autobuild-Date: Wed Jan 19 23:10:50 CET 2011 on sn-devel-104 | |||||
* | s3-smbd: Fixed a possible null pointer dereference. | Andreas Schneider | 2011-01-19 | 1 | -1/+3 | |
| | ||||||
* | s3: Add wbinfo --dc-info | Volker Lendecke | 2011-01-19 | 4 | -0/+148 | |
| | | | | | | | | | | | | | | | wbinfo --dc-info prints the current DC name and IP address. This helps diagnosing problems that might happen when a later wbinfo --ping-dc fails. This patch started out by using the SAF and NBT cache entires, but those are relatively short-lived. So I decided to invent a new gencache entry with a very long timeout. We need to go via the gencache because when for some reason a winbind child process is stuck, we can't query it for the current DC it's connected to. This must eventually go away again when we have a fully async winbind. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Jan 19 08:40:28 CET 2011 on sn-devel-104 | |||||
* | Add DELETE-LN test to show bug #7863 - Unlink may unlink wrong file when ↵ | Jeremy Allison | 2011-01-19 | 1 | -0/+111 | |
| | | | | | | | hardlinks are involved Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Jan 19 03:06:32 CET 2011 on sn-devel-104 | |||||
* | Fix "net usersidlist" not to skip every other user | Olly Betts | 2011-01-19 | 1 | -1/+0 | |
| | | | | | | | | | Remove double increment from for loop over users in get_user_tokens(), left over from when this used to be a while loop. Bug was introduced in 1e39a619. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Jan 19 01:34:29 CET 2011 on sn-devel-104 | |||||
* | s3-winbind: no need to include ../librpc/gen_ndr/cli_lsa.h in | Günther Deschner | 2011-01-19 | 1 | -1/+0 | |
| | | | | | | | | | winbindd/winbindd_msrpc.c. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Jan 19 00:37:46 CET 2011 on sn-devel-104 | |||||
* | s3-rpc_client: no need to include ../librpc/gen_ndr/ndr_lsa_c.h anymore. | Günther Deschner | 2011-01-18 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | s3-netlogon: no need to include ../librpc/gen_ndr/ndr_lsa_c.h anymore. | Günther Deschner | 2011-01-18 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | s3-netlogon: no need to include ../librpc/gen_ndr/cli_samr.h anymore. | Günther Deschner | 2011-01-18 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | s3-net: use correct spoolss header in net rpc. | Günther Deschner | 2011-01-18 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | s3-net: use correct spoolss header in net_ads.c. | Günther Deschner | 2011-01-18 | 1 | -1/+1 | |
| | | | | Guenther | |||||
* | Fix error where Windows client spoolss returns WERR_INVALID_DATA ↵ | Jeremy Allison | 2011-01-18 | 1 | -0/+4 | |
| | | | | | | | | | W_ERROR(0x0000000D) on opening a printer. We can't return zero for devmode->size. Guenther please check ! Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Tue Jan 18 23:45:33 CET 2011 on sn-devel-104 | |||||
* | s3-rpc_client: Fixed status check of dcerpc_lsa_lookup_sids_noalloc. | Andreas Schneider | 2011-01-17 | 1 | -1/+1 | |
| | | | | | Autobuild-User: Andreas Schneider <asn@samba.org> Autobuild-Date: Mon Jan 17 17:35:50 CET 2011 on sn-devel-104 | |||||
* | s3-rpc_client: Fixed return values of dcerpc_lsa_lookup_sids_generic. | Andreas Schneider | 2011-01-17 | 1 | -4/+4 | |
| | ||||||
* | s3-auth: Fixed account lockout check. | Andreas Schneider | 2011-01-17 | 1 | -1/+1 | |
| | ||||||
* | s3: Make sure we call wbcAuthenticateUserEx correctly | Volker Lendecke | 2011-01-17 | 2 | -8/+29 | |
| | | | | | | | | | | | | There are cases where we fill in params.password.response.lm_data with non-NULL where params.password.response.lm_length is 0. wbcAuthenticateUserEx does not like that. I haven't been able to reproduce this with smbclient yet, I've seen it with a proprietary smb client implementation. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 16:30:11 CET 2011 on sn-devel-104 | |||||
* | s3:build: don't use librpc/gen_ndr/cli_echo.[ch] anymore | Stefan Metzmacher | 2011-01-17 | 2 | -8/+3 | |
| | | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Jan 17 09:34:12 CET 2011 on sn-devel-104 | |||||
* | s3:torture: use dcerpc_echo_X() functions | Stefan Metzmacher | 2011-01-17 | 1 | -4/+6 | |
| | | | | metze | |||||
* | s3:rpcclient: use dcerpc_echo_X() functions | Stefan Metzmacher | 2011-01-17 | 1 | -30/+37 | |
| | | | | metze | |||||
* | s3: Avoid a few calls to cli_errstr | Volker Lendecke | 2011-01-17 | 2 | -9/+13 | |
| | | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 08:47:25 CET 2011 on sn-devel-104 | |||||
* | s3: Remove some unused code | Volker Lendecke | 2011-01-17 | 2 | -107/+0 | |
| | ||||||
* | s3: Convert cli_lock64 to cli_smb | Volker Lendecke | 2011-01-17 | 1 | -34/+24 | |
| | ||||||
* | s3: Convert cli_lock to use cli_locktype | Volker Lendecke | 2011-01-17 | 1 | -46/+7 | |
| | ||||||
* | s3: Convert cli_locktype to cli_smb | Volker Lendecke | 2011-01-17 | 1 | -32/+22 | |
| | ||||||
* | s3: Make passing up "result_parent" from cli_smb optional | Volker Lendecke | 2011-01-17 | 2 | -3/+2 | |
| | ||||||
* | s3: Remove unused cli_send_keepalive | Volker Lendecke | 2011-01-17 | 2 | -20/+0 | |
| | ||||||
* | s3: Remove unused cli_send/receive_trans | Volker Lendecke | 2011-01-17 | 2 | -340/+0 | |
| | ||||||
* | s3: Convert try_trans2 to cli_trans | Volker Lendecke | 2011-01-17 | 1 | -28/+28 | |
| | ||||||
* | s3: Convert cli_api to cli_trans | Volker Lendecke | 2011-01-17 | 1 | -11/+48 | |
| | ||||||
* | s3: Make cli_setpathinfo_basic use cli_setpathinfo | Volker Lendecke | 2011-01-17 | 3 | -77/+20 | |
| | ||||||
* | s3: Add cli_setpathinfo | Volker Lendecke | 2011-01-17 | 2 | -0/+40 | |
| | ||||||
* | s3: Rename cli_setpathinfo->cli_setpathinfo_basic | Volker Lendecke | 2011-01-17 | 3 | -18/+18 | |
| | ||||||
* | s3: Remove unused cli_send/receive_nt_trans | Volker Lendecke | 2011-01-17 | 2 | -350/+0 | |
| |