summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * Survive a samdump with an alias that has no descriptionVolker Lendecke2003-04-181-3/+6
| | | | | | | | Volker
| * seem that someone changed the semanthic of unix_strlower without fixing allSimo Sorce2003-04-173-8/+15
| | | | | | | | | | | | places where it was used, this caused me segfaults in the last week :( add more debugging in idmap to chase down a problem
* | Merge from HEAD - the usual popt-needs-static for Sun CC.Andrew Bartlett2003-04-301-1/+1
| |
* | Try to fix IRIX build - add quotes and never call libns_winbind by name - weAndrew Bartlett2003-04-302-4/+4
| | | | | | | | should only set that name once.
* | Trailing , is non-standard (warning from IRIX)Andrew Bartlett2003-04-301-2/+2
| |
* | Fix for AIX - you can't qualify a return type as const, when it's not aAndrew Bartlett2003-04-301-1/+1
| | | | | | | | | | | | | | | | pointer. (merge from HEAD). Andrew Bartlett
* | Sun CC requires constant initialisers, so use a static here.Andrew Bartlett2003-04-301-1/+1
| | | | | | | | (a common bug with popt stuff, becouse it's fine with GCC).
* | smbgroupedit has been replaced by 'net groupmap'Gerald Carter2003-04-292-412/+0
| | | | | | | | remove related file. Left in EHAD for reference (for now)
* | remove convert_smbpasswd and addtosmbpass from tree; people can get them ↵Gerald Carter2003-04-294-4/+27
| | | | | | | | from 2.2. if they still need them
* | Like net rpc user -l, let net ads user -l allow more than 50 characters inJim McDonough2003-04-291-1/+1
| | | | | | | | comments.
* | Allow net rpc user -l to list longer than 50 characters in a user comment.Jim McDonough2003-04-291-1/+1
| | | | | | | | | | Net.exe on windows won't allow more than 50 characters to be entered, but through AD you can have much more than this.
* | adding ifdef'd code to add alias membership for vampireGerald Carter2003-04-291-0/+138
| |
* | add version back to lanman string in sessetup replyGerald Carter2003-04-291-1/+5
| |
* | Use a common function to create the SAM_ACCOUNT being used to add accountsAndrew Bartlett2003-04-293-61/+45
| | | | | | | | | | | | | | | | to the system. This means that we always run Get_Pwnam(), and can never add FOO when foo exists on the system (the idea is to instead add foo into the passdb, using it's full name, RID etc). Andrew Bartlett
* | sync with HEAD and remove --with-misplussam as wellGerald Carter2003-04-291-17/+0
| |
* | remove --with-tdbsam since it is always built nowGerald Carter2003-04-292-18/+1
| |
* | do not build wrepld by default; package maintainers need to update their ↵Gerald Carter2003-04-291-1/+1
| | | | | | | | files now (john :) )
* | don't implement any group mapping functions in the guest sam moduleGerald Carter2003-04-292-0/+59
| |
* | only call the add_script if the getpwnam_alloc() failsGerald Carter2003-04-291-19/+28
| |
* | removing printing = SOFTQ since no one knows what it isGerald Carter2003-04-292-95/+0
| |
* | Fix for format string warning from vanceAndrew Bartlett2003-04-291-8/+8
| |
* | Fixes from Ronan Waide <waider@waider.ie> for large RPC writes.Jeremy Allison2003-04-281-2/+2
| | | | | | | | Jeremy.
* | Use NTSTATUS as return value for smb_register_*() functions and init_module()Jelmer Vernooij2003-04-2837-126/+163
| | | | | | | | function. Patch by metze with some minor modifications.
* | Add cast for compilerAndrew Bartlett2003-04-281-1/+1
| |
* | Fix a confusing error messageVolker Lendecke2003-04-281-1/+1
| | | | | | | | Volker
* | The caller must always set the RID on the SAM_ACCOUNT, so don't try and guessAndrew Bartlett2003-04-281-3/+1
| | | | | | | | | | | | it from the UID. Andrew Bartlett
* | The RID must be 'SET', not 'DEFAULT' or we won't set it into LDAP, and tryAndrew Bartlett2003-04-281-2/+2
| | | | | | | | | | | | to make it up from the algorithm... Andrew Bartlett
* | Guenther Deschner <gd@suse.de> notes that I missed out setting the defaultAndrew Bartlett2003-04-281-1/+3
| | | | | | | | | | | | for the 'normal' case (not --with-ldapsam). Andrew Bartlett
* | A new pdb_ldap!Andrew Bartlett2003-04-284-316/+724
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes 'non unix account range' (same as idra's change in HEAD), and uses the winbind uid range instead. More importanly, this patch changes the LDAP schema to use 'ntSid' instead of 'rid' as the primary attribute. This makes it in common with the group mapping code, and should allow it to be used closely with a future idmap_ldap. Existing installations can use the existing functionality by using the ldapsam_compat backend, and users who compile with --with-ldapsam will get this by default. More importantly, this patch adds a 'sambaDomain' object to our schema - which contains 2 'next rid' attributes, the domain name and the domain sid. Yes, there are *2* next rid attributes. The problem is that we don't 'own' the entire RID space - we can only allocate RIDs that could be 'algorithmic' RIDs. Therefore, we use the fact that UIDs in 'winbind uid' range will be mapped by IDMAP, not the algorithm. Andrew Bartlett
* | inet_pton isn't portable, so use interpret_addr2.Andrew Bartlett2003-04-281-3/+3
| |
* | Merge:Tim Potter2003-04-281-11/+11
| | | | | | | | > Perform lp_load() before popt to fix -W option.
* | Replace workgroup global variable with lp_workgroup()Tim Potter2003-04-281-10/+8
| | | | | | | | | | | | | | Call lp_load() before parsing command line options so we can override the workgroup value with the -W switch. Fixes bug #39.
* | Fix compiler warning.Tim Potter2003-04-281-1/+1
| |
* | Merge:Tim Potter2003-04-281-2/+4
| | | | | | | | | | >Patch from waider to set exit code of last executed command specified >as an argument to -c.
* | Whitespace syncup.Tim Potter2003-04-284-14/+7
| |
* | Merge: we need a rule for t_snprintfTim Potter2003-04-281-0/+2
| |
* | Ignore t_snprintf binary.Tim Potter2003-04-281-1/+2
| |
* | Merge of a debuglevel downgrade from HEAD.Tim Potter2003-04-281-2/+2
| |
* | Merge stf updates from HEAD.Tim Potter2003-04-282-5/+6
| |
* | Merge of const fixes from HEAD.Tim Potter2003-04-283-3/+3
| |
* | Merge from HEAD:Tim Potter2003-04-281-0/+2
| | | | | | | | | | | | | | >Return NT_STATUS_UNSUCCESSFUL if the sourcedata and echodata rpcs >return unexpected data. > >Closes bug #2.
* | Fix number of arguments to asprintf()Jelmer Vernooij2003-04-281-1/+1
| |
* | Make some more functions staticJelmer Vernooij2003-04-281-3/+3
| |
* | Add 'smbiconv' program - a clone of the 'iconv' utilityJelmer Vernooij2003-04-272-0/+249
| | | | | | | | | | that uses samba's internal iconv() functions. Useful for testing purposes.
* | Patch from VorlonJohn Terpstra2003-04-261-7/+1
| |
* | round three of CIDR fixes; spotted by Tomoki AONOGerald Carter2003-04-261-3/+2
| |
* | Remove the unpopular pdb_unix, which has served it's time well.Andrew Bartlett2003-04-263-144/+9
| | | | | | | | | | | | Also get charset 'werid' for both --enable-developer options in configure. Andrew Bartlett
* | After a quick run with the 'weird' charset, squash a few bugs in our newAndrew Bartlett2003-04-261-5/+12
| | | | | | | | | | | | | | | | | | 'UF8-safe' LDAP code. I hope I've caught all the places where we were pushing strings into or out of LDAP now. Andrew Bartlett
* | Add the weird charset in 3_0 and build it by default for ./configure ↵Jelmer Vernooij2003-04-261-0/+131
| | | | | | | | --enable-developer
* | Fix the weird charset and build it by default for ./configure -enable-developerJelmer Vernooij2003-04-262-6/+7
| |