summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | We should be using SHLD not LINK when creating shared libraries.Jeremy Allison2002-01-021-6/+6
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Ensure last changed times are updated.Jeremy Allison2002-01-021-1/+9
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | configure configure.in: Updated with HEAD unicos stuff.Jeremy Allison2002-01-025-839/+796
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libsmb/errormap.c: Merge from HEAD - correct error table. include/rpc_samr.h rpc_server/srv_samr_nt.c: Make user enumeration work for w2k and win9x. This means different return sizes depending on client bugs. This sucks :-(. Jeremy.
| * | | | last_enum not used.Jeremy Allison2001-12-311-4/+0
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Fixed enumeration of a large (<1500) users from a Samba PDC to a W2kJeremy Allison2001-12-312-7/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | member server. Firstly, use the same max enumeration size (0x400) as W2K uses, otherwise W2K won't ask for any more. Secondly, if a enumeration request with a non-zero offset comes in on a handle that hasn't started an enumeration, don't bitch about it (return NT_STATUS_UNSUCCESSFUL), just load the db on that handle and return at that offset. Jeremy.
| * | | | Fix crash when returning 1000 users to Win98 (tested - hurrah to JF !!).Jeremy Allison2001-12-313-23/+29
| | | | | | | | | | | | | | | | | | | | Jermey.
| * | | | removed unused variablesGerald Carter2001-12-311-2/+0
| | | | |
| * | | | const religion only works when everything follows it.Gerald Carter2001-12-311-19/+18
| | | | | | | | | | | | | | | | | | | | | | | | | Too big of a rewrite for me right now. Minor fixes to make --with-tdbsam compile.
| * | | | backport of changes from HEADSimo Sorce2001-12-311-52/+59
| | | | |
| * | | | sync macro name with HEADGerald Carter2001-12-311-1/+1
| | | | |
| * | | | never, never, never, never commit without testing it ...Simo Sorce2001-12-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 3 mistakes in a day :( time to get an holyday?
| * | | | freeing the wrong pointer, sorry.Simo Sorce2001-12-301-5/+5
| | | | |
| * | | | Merge from HEAD.Tim Potter2001-12-301-1/+1
| | | | |
| * | | | forgot protoSimo Sorce2001-12-301-668/+666
| | | | |
| * | | | backport from head, passdb backends are a bit different (I've seen only the ↵Simo Sorce2001-12-303-27/+18
| | | | | | | | | | | | | | | | | | | | ldap init fns) so I leave to other (jeremy, jerry ?) to backports the mods if they think it is ok.
| * | | | When running interactive we want to set our own process group forJeremy Allison2001-12-306-11/+41
| | | | | | | | | | | | | | | | | | | | | | | | | signal management. Jeremy.
| * | | | removed uidNumber and gidNumber from the LDAP schema. We doGerald Carter2001-12-291-3/+0
| | | | | | | | | | | | | | | | | | | | not use these (but rely on the OS supplied values).
| * | | | made pdb_getsampwuid() into a simple wrapper for pdb_getsampwnam().Gerald Carter2001-12-297-168/+47
| | | | | | | | | | | | | | | | | | | | | | | | | No need for a samdb backend to implement it. We shoulnever trust the uid in the samdb backend.
| * | | | fixed segfault in set_user_info_[21|23]. Removed copy_sam_passwd().Gerald Carter2001-12-291-40/+31
| | | | | | | | | | | | | | | | | | | | HEAD is ok. No need to merge.
| * | | | Added -i (interactive) mode of running.Jeremy Allison2001-12-292-12/+23
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Removed extra lp_adduser() call.Jeremy Allison2001-12-293-704/+697
| | | | | | | | | | | | | | | | | | | | | | | | | Fixed up error returns in get_correct_cversion(). Jeremy.
| * | | | Added store flag to four od the pdb_set_XXX() functions toGerald Carter2001-12-295-47/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | indicate whether we save saving a smb.conf default value or one that should actually be persistent (and individual). The LDAP backend now does not save default settings for "logon home", "logon path", "logon drive", and "logon script". If the attributes exist in the sambaAccount entry, they will take precedence over the smb.conf defaults.
| * | | | fix wrong NULL parameter that could cause a segfault in print_queue_status()Simo Sorce2001-12-291-1/+2
| | | | |
| * | | | not perfect but fixes several bugs in the LDAP code.Gerald Carter2001-12-285-92/+179
| | | | | | | | | | | | | | | | | | | | | | | | | * we only store non-default value for smbHome, et. al. * we can add a sambaAccount with a posisAccount (still need a uid)
| * | | | removing unused filesGerald Carter2001-12-273-1492/+0
| | | | |
| * | | | Fixed SAFE_FREE ref.Jeremy Allison2001-12-271-4/+9
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | few ldap fixes; introduced init_flag to mark which fields have beenGerald Carter2001-12-273-27/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | initialized (without using NULL pointers); removed dependency for preexisting posixAccount entry in the directory to add a new user/machine.
| * | | | Removed spurious (char *) casts in SAFE_FREE calls.Jeremy Allison2001-12-2722-40/+40
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Get religion on using SAFE_FREE.Jeremy Allison2001-12-2666-310/+254
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Fix readline completion function prototype problems.Jeremy Allison2001-12-224-4/+4
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | This file no longer used.Jeremy Allison2001-12-221-1428/+0
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Fixed gcc3 based warning.Jeremy Allison2001-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Merged in enough of JF's fixes for enumerating users that this shouldJeremy Allison2001-12-226-591/+810
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix the Win98 bug. Did not merge the group stuff (go'on Gerald, let me.... :-). as Jerry would kill me :-). Jeremy.
| * | | | add list function for IRIXHerb Lewis2001-12-211-27/+191
| | | | |
| * | | | lib/snprintf.c: Fix typo.Jeremy Allison2001-12-213-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libsmb/cliconnect.c: Fix for non null-terminated strings. nsswitch/pam_winbind.c: Fix typo. Jeremy.
| * | | | removed yodldocs: targetGerald Carter2001-12-211-8/+0
| | | | |
| * | | | fix memory leakHerb Lewis2001-12-212-16/+22
| | | | |
| * | | | remove duplicate lines and undefined variableHerb Lewis2001-12-211-4/+1
| | | | |
| * | | | Fixed typo.Tim Potter2001-12-211-1/+1
| | | | |
| * | | | Added --with-logfilebase. Merged Tim's append change.Jeremy Allison2001-12-213-743/+785
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Merge from HEAD.Tim Potter2001-12-211-1/+2
| | | | |
| * | | | Fixup warning.Jeremy Allison2001-12-211-0/+2
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | Formatting fixup. Remove unused variables when compiling with --with-ldapsam.Jeremy Allison2001-12-212-6/+1
| | | | | | | | | | | | | | | | | | | | Jeremy.
| * | | | rerun autoconfHerb Lewis2001-12-211-11/+11
| | | | |
| * | | | add irix to winbind supported platformsHerb Lewis2001-12-211-1/+1
| | | | |
| * | | | add some comments and a debug printoutHerb Lewis2001-12-211-4/+9
| | | | |
| * | | | Add IRIX lookup function. (still need to do list function)Herb Lewis2001-12-211-16/+315
| | | | |
| * | | | split winbindd_request into a winbindd_send_request and winbindd_get_responseHerb Lewis2001-12-211-34/+53
| | | | | | | | | | | | | | | | | | | | | | | | | to make IRIX able to use callouts for library module. Made file descriptor no longer static and made winbind_open_pipe_sock not static.
| * | | | Removed global debugf. Replaced with lp_set_logfile(name).Jeremy Allison2001-12-209-25/+70
| | | | | | | | | | | | | | | | | | | | | | | | | Fixed winbindd to finally stop leaving log. file droppings :-). Jeremy.
| * | | | PAM_CHANGED_EXPIRED_AUTHTOK patch from Steve L.Gerald Carter2001-12-201-3/+5
| | | | |