summaryrefslogtreecommitdiffstats
path: root/source/utils/smbcquotas.c
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: Change calling conventions for cli_rpc_pipe_open_noauthVolker Lendecke2008-07-201-2/+4
| | | | Pass in ndr_syntax_id instead of pipe_idx, return NTSTATUS
* Fix client authentication with -P switch in client tools (Bug 5435).Günther Deschner2008-05-051-1/+14
| | | | Guenther
* Fix -e for smbcquotas.Jeremy Allison2008-01-051-11/+24
| | | | Jeremy.
* s/sid_to_string/sid_to_fstring/Volker Lendecke2007-12-151-1/+1
| | | | least surprise for callers
* Remove the char[1024] strings from dynconfig. ReplaceJeremy Allison2007-12-101-1/+1
| | | | | | them with malloc'ing accessor functions. Should save a lot of static space :-). Jeremy.
* Make all the tools use the proper accessor functions.Jeremy Allison2007-12-061-9/+11
| | | | Jeremy.
* Getting to the home stretch for elimination of pstrings...Jeremy Allison2007-12-031-32/+60
| | | | Jeremy.
* Remove the explicit TALLOC_CTX * from cli_struct.Jeremy Allison2007-11-291-4/+3
| | | | | | Make us very explicit about how long a talloc ctx should last. Jeremy.
* Change all occurrences of zero_addr(&ss,AF_INET) toJeremy Allison2007-10-271-1/+1
| | | | | | | | zero_addr(&ss). All current uses were always of the AF_INET form, so simplify the call. If in the future we need to zero an addr to AF_INET6 this can be done separately. Jeremy.
* This is a large patch (sorry). Migrate from struct in_addrJeremy Allison2007-10-241-7/+8
| | | | | | | | | | | | | to struct sockaddr_storage in most places that matter (ie. not the nmbd and NetBIOS lookups). This passes make test on an IPv4 box, but I'll have to do more work/testing on IPv6 enabled boxes. This should now give us a framework for testing and finishing the IPv6 migration. It's at the state where someone with a working IPv6 setup should (theorecically) be able to type : smbclient //ipv6-address/share and have it work. Jeremy.
* Fix the popt / bool issues. Some places we used BOOLJeremy Allison2007-10-191-3/+12
| | | | | | where we meant int. Fix this. Thanks to metze for pointing this out. Jeremy.
* RIP BOOL. Convert BOOL -> bool. I found a few interestingJeremy Allison2007-10-181-12/+12
| | | | | | | bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy.
* Add start of IPv6 implementation. Currently most of this is avoidingJeremy Allison2007-10-101-1/+1
| | | | | | | | | | IPv6 in winbindd, but moves most of the socket functions that were wrongly in lib/util.c into lib/util_sock.c and provides generic IPv4/6 independent versions of most things. Still lots of work to do, but now I can see how I'll fix the access check code. Nasty part that remains is the name resolution code which is used to returning arrays of in_addr structs. Jeremy.
* r24943: Some stackframesVolker Lendecke2007-10-101-0/+3
|
* r23784: use the GPLv3 boilerplate as recommended by the FSF and the license textAndrew Tridgell2007-10-101-2/+1
|
* r23779: Change from v2 or later to v3 or later.Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r23627: Allow to pass down the lookup-level to rpccli_lsa_lookup_names().Günther Deschner2007-10-101-1/+1
| | | | Guenther
* r23009: Both contains a strchr_m(server,'/') few lines after replacing all / ↵James Peach2007-10-101-5/+2
| | | | | | | | with \. This patch removes this dead code. Patch from Pascal Terjan <pterjan@mandriva.com> for bug #2313.
* r18271: Big change:Gerald Carter2007-10-101-2/+2
| | | | | | | | | | | * autogenerate lsa ndr code * rename 'enum SID_NAME_USE' to 'enum lsa_SidType' * merge a log more security descriptor functions from gen_ndr/ndr_security.c in SAMBA_4_0 The most embarassing thing is the "#define strlen_m strlen" We need a real implementation in SAMBA_3_0 which I'll work on after this code is in.
* r16644: Fix bug #3887 reported by jason@ncac.gwu.eduJeremy Allison2007-10-101-2/+2
| | | | | | by converting the lookup_XX functions to correctly return SID_NAME_TYPE enums. Jeremy.
* r13316: Let the carnage begin....Gerald Carter2007-10-101-1/+1
| | | | Sync with trunk as off r13315
* r13212: r12414@cabra: derrell | 2006-01-28 17:52:17 -0500Derrell Lipman2007-10-101-1/+1
| | | | | | | | | | | | lp_load() could not be called multiple times to modify parameter settings based on reading from multiple configuration settings. Each time, it initialized all of the settings back to their defaults before reading the specified configuration file. This patch adds a parameter to lp_load() specifying whether the settings should be initialized. It does, however, still force the settings to be initialized the first time, even if the request was to not initialize them. (Not doing so could wreak havoc due to uninitialized values.)
* r12555: Fix more load_case_table swegfaults. Arggg.Jeremy Allison2007-10-101-0/+2
| | | | | What I'd give for a global constructor... Jeremy.
* r12045: More warning fixes... Just a few more to go.Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r10656: BIG merge from trunk. Features not copied overGerald Carter2007-10-101-5/+8
| | | | | | | * \PIPE\unixinfo * winbindd's {group,alias}membership new functions * winbindd's lookupsids() functionality * swat (trunk changes to be reverted as per discussion with Deryck)
* r2388: fix client quota supportStefan Metzmacher2007-10-101-2/+3
| | | | | | for the client we need the windows path and for server we need unix path metze
* r2348: fix segmention faultsStefan Metzmacher2007-10-101-5/+6
| | | | | | in smbcquotas and smbcacls caused by setup_logging() (-r 1425) metze
* Put strcasecmp/strncasecmp on the banned list (except for needed callsJeremy Allison2003-10-221-7/+7
| | | | | | in iconv.c and nsswitch/). Using them means you're not thinking about multibyte at all and I really want to discourage that. Jeremy.
* Add a command line option (-S on|off|required) to enable signing on clientJeremy Allison2003-07-301-1/+2
| | | | | connections. Overrides smb.conf parameter if set. Jeremy.
* Reverse previous patch from Stefan and me after comments by Andrew BartlettJelmer Vernooij2003-05-101-2/+0
|
* Patch from metze and me that adds dummy smb_register_*() functions soJelmer Vernooij2003-05-101-0/+2
| | | | | that is now possible to, for example, load a module which contains an auth method into a binary without the auth/ subsystem built in.
* Merge from HEAD - the usual popt-needs-static for Sun CC.Andrew Bartlett2003-04-301-1/+1
|
* Merge of const fixes from HEAD.Tim Potter2003-04-281-1/+1
|
* More fun with Sun CC needing constant initializersAndrew Bartlett2003-04-231-1/+1
|
* smbcquota patch from metzeGerald Carter2003-04-111-0/+545