summaryrefslogtreecommitdiffstats
path: root/source3/utils
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename dos_errstr() to win_errstr() for consistency with Samba 4.Jelmer Vernooij2008-11-016-67/+67
|
* s3-net: fix build warning.Günther Deschner2008-11-011-1/+1
| | | | | | Jeremy, please check. Guenther
* s3-samr: remove duplicate copies of Domain Object specific access rights.Günther Deschner2008-10-311-1/+1
| | | | Guenther
* s3-samr: remove duplicate copies of SAM server specific access rights.Günther Deschner2008-10-311-1/+1
| | | | Guenther
* Unify se_access_check with the S4 code. Will makeJeremy Allison2008-10-311-11/+7
| | | | | | calculation of SEC_FLAG_MAXIMUM_ALLOWED much easier for files. Jeremy.
* [s3]pdbedit: remove unused variable.Michael Adam2008-10-271-4/+0
| | | | | | | | | Note: The change of commit r21962 (or fe962d2e48, aka f540c18b2) that was partly lost in the SVN->git glue commit e5a951325a6 (aka 5c6c8e1fe93f34) is not needed any more since the handler for option "-s" calls set_dyn_CONFIGFILE(). Michael
* Use common net utility code (address and sockaddr manipulation).Jelmer Vernooij2008-10-232-2/+2
|
* Use sockaddr_storage only where we rely on the size, use sockaddrJelmer Vernooij2008-10-231-2/+2
| | | | | otherwise (to clarify we can also pass in structs smaller than sockaddr_storage, such as sockaddr_in).
* Use WERR_FILE_EXISTS which is the equivalent of WERR_ALREADY_EXISTSJelmer Vernooij2008-10-231-1/+1
| | | | previously present in Samba 3.
* Use common error definitions.Jelmer Vernooij2008-10-231-1/+1
|
* Cope with MAXIMUM_ALLOWED_ACCESS requests when opening handles.Jeremy Allison2008-10-211-11/+0
| | | | Jeremy.
* s3-build: no need to duplicate generated ndr_ prototypes.Günther Deschner2008-10-201-0/+1
| | | | Guenther
* Regenerate pidl output.Jelmer Vernooij2008-10-201-1/+1
|
* Remove silly safe_free() function which is a wrapper around SAFE_FREE().Jelmer Vernooij2008-10-193-4/+4
| | | | | | | | Since it's a function it just sets the local pointer to NULL and basically is an equivalent to free(). It also claims it's being used for callbacks but isn't used that way anywhere.
* Add TALLOC_CTX pointer to generate_random_str(), for consistency withJelmer Vernooij2008-10-191-7/+3
| | | | Samba 4.
* Rename hex_encode to hex_encode_talloc,for consistency with samba 4 and heimdal.Jelmer Vernooij2008-10-181-4/+4
|
* [s3]testparm: prevent "no stackframe around" warning.Michael Adam2008-10-181-1/+1
| | | | | | gfree_loadparm and TALLOC_FREE(frame) were in the wrong order. Michael
* Use separate make variables for libutil and libcrypto.Jelmer Vernooij2008-10-181-2/+2
|
* s3: remove rpccli_svcctl_query_config.Günther Deschner2008-10-161-19/+30
| | | | Guenther
* s3: fix various samr callers.Günther Deschner2008-10-151-5/+5
| | | | Guenther
* Share initshutdown.idl.Jelmer Vernooij2008-10-151-8/+4
|
* Attempt to fix bug #5818 - "smbcacls: sorts ACEs improperly and loses ↵Jeremy Allison2008-10-141-26/+157
| | | | | | | | | | inheritance", based on a patch from Paul Fertser <fercerpav@gmail.com>. I also added the ability to get/set hex and symbolic inheritance flag names on ACE flags. I'm still investigating the effects of setting the "SEC_DESC_DACL_AUTO_INHERIT_REQ" flag as I don't yet see what effects this is having on the ACE sent. Jeremy.
* Use GUID_string rather than smb_uuid_string().Jelmer Vernooij2008-10-141-1/+1
|
* Use {u,}int64_t instead of SMB_BIG_{U,}INT.Jelmer Vernooij2008-10-142-11/+7
|
* Use common util_file code.Jelmer Vernooij2008-10-121-2/+2
|
* Cope with changed signature of http_timestring().Jelmer Vernooij2008-10-113-10/+18
|
* Remove SEC_ACCESS. It's a uint32_t.Jeremy Allison2008-10-092-2/+2
| | | | Jeremy.
* Remove an unused variableVolker Lendecke2008-10-051-1/+0
|
* net_dns: Make "lwinet ads dns register" honor the "interfaces" parameter.Gerald (Jerry) Carter2008-10-031-13/+12
| | | | | This is helpful on multihomed hosts that only require a subset of IP addresses be registered with DNS.
* [s3]testparm: give testparm one common exit point and call gfree_loadparm().Michael Adam2008-09-271-6/+13
| | | | Michael
* [s3]testparm: free the popt context when it is no longer used.Michael Adam2008-09-271-0/+2
| | | | Michael
* net: Make share type lookup a function.Kai Blin2008-09-264-12/+17
|
* s3-nbt: remove double nbt netlogon opcodes.Günther Deschner2008-09-251-4/+4
| | | | Guenther
* s3-nbt: use the new generated nbt.Günther Deschner2008-09-241-4/+4
| | | | Guenther
* s3-nbt: fix remaining callers of ndr_push/pull_struct_blob.Günther Deschner2008-09-231-1/+1
| | | | Guenther
* Fixed "uninitilized variable" build warningSteven Danneman2008-09-151-1/+1
| | | | | | | | Simple fix for warning: Compiling utils/sharesec.c utils/sharesec.c: In function `change_share_sec': utils/sharesec.c:404: warning: 'sd' might be used uninitialized in this function
* net: use netapi for NetFileEnum.Günther Deschner2008-09-111-68/+32
| | | | | Guenther (This used to be commit f85dcf8112137b7ad07f2b51eeca598e9c4d0ffa)
* net: use netapi for NetFileClose.Günther Deschner2008-09-111-33/+13
| | | | | Guenther (This used to be commit fd3d130d25a7c30fe003abe01fc18d8f754a466f)
* net: use netapi for NetShareEnum.Günther Deschner2008-09-111-66/+36
| | | | | Guenther (This used to be commit f4cb75b1e2b030055b9c566f941277286095b8a7)
* net: share_type is defined in net_rap.c, net_rpc.c needs to use that.Kai Blin2008-09-102-2/+3
| | | | | This fixes a crash in net rpc share that Günther Deschner found. (This used to be commit 50af6d609dcbbdadb9af44ede980d9c85ac834e3)
* net: use NETSETUP flags consistently.Günther Deschner2008-09-081-1/+1
| | | | | Guenther (This used to be commit f48e0cacdf7ed458e0e89ab151e3d233fb89240b)
* net: use netapi for rpc_sh_share_delete as well.Günther Deschner2008-09-051-10/+1
| | | | | Guenther (This used to be commit b56ec0b9952dbad9f552c4be30eaae36faa9131c)
* net: use netapi for deleting shares.Günther Deschner2008-09-051-36/+2
| | | | | Guenther (This used to be commit d7b07b636947cb52aa5474e86c4a3b6aa391a36f)
* net: use netapi for rpc_sh_share_add as well.Günther Deschner2008-09-051-21/+15
| | | | | Guenther (This used to be commit 0c232742561a4001909ccce2c5160d57d09edb40)
* net: use netapi to add shares.Günther Deschner2008-09-051-49/+43
| | | | | Guenther (This used to be commit 95ac480e2030dc607283a8eb89b44015527efa4b)
* Fix some nonempty blank linesVolker Lendecke2008-09-011-21/+21
| | | | (This used to be commit 9336cd1c5e5b5d113cd4912d4479dfe609fe261e)
* netapi: use NETSETUP join flags in examples.Günther Deschner2008-08-291-4/+4
| | | | | Guenther (This used to be commit 2f6f888d9cf89abf55767dc43a9e3d5de68bbcfb)
* net: now that "net rpc user" uses netapi calls exclusivly, net rpc shell needsGünther Deschner2008-08-291-0/+9
| | | | | | | to use netapi as well. Guenther (This used to be commit 2f730649b73dcd11734d12921bfdad982fe75717)
* net: use netapi for "net rpc user info" to enumerate user group membership.Günther Deschner2008-08-291-112/+27
| | | | | Guenther (This used to be commit 77ecfff216b24b0d4b1ce79bee13c18bffa7b533)
* net: use netapi function to set user password.Günther Deschner2008-08-291-113/+18
| | | | | Guenther (This used to be commit f31fd1e112ec6477ae0e0eeeede0317c0cdfcbfd)