Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Removed extra '()' s. | Jeremy Allison | 2001-09-24 | 1 | -8/+6 | |
| | | | | Jeremy. | |||||
* | fixed a typo in installman.sh | Motonobu Takahashi | 2001-09-24 | 2 | -2/+2 | |
| | | | | fixed a problem that source/install-sh is not executable | |||||
* | fixed a typo | Motonobu Takahashi | 2001-09-24 | 1 | -1/+1 | |
| | ||||||
* | added files and directories to support gettext() feature | Motonobu Takahashi | 2001-09-24 | 39 | -0/+16121 | |
| | | | | | Also added some po files to support: English, Japanese, Polish, Turlish | |||||
* | Update configure from configure.in | Motonobu Takahashi | 2001-09-24 | 1 | -738/+2615 | |
| | ||||||
* | Added SWAT i18n feature: | Motonobu Takahashi | 2001-09-24 | 14 | -526/+1623 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | TO enable configure with --with-i18n-swat to support this gettext is integrated and a new directories name "po" and "intl" are created. now these languages are supported: en - English (default) ja - Japanese po - Polish tr - Turkish To add your language, to create ${your_language}.po by translating source/po/en.po into your language is needed. some of html and image files of various language version are not included yet, though message catalogue files are installed. you need to copy files manually under ${swatdir}/lang/$ln/{help,images,included,using_samba} And also added a option to intall manual pages: of various lang version To enable configure with --with-manlangs but manual pages themself are not included yet. | |||||
* | added SWAT i18n support files for Japanese and Turkish | Motonobu Takahashi | 2001-09-24 | 23 | -0/+192 | |
| | ||||||
* | fixed a silly off by 1 bug | Andrew Tridgell | 2001-09-24 | 2 | -2/+5 | |
| | ||||||
* | fixed bug in POST var handling | Andrew Tridgell | 2001-09-24 | 1 | -4/+2 | |
| | ||||||
* | If we disable hostname lookups we can at least get a uniform answer for testing | Andrew Bartlett | 2001-09-24 | 2 | -3/+2 | |
| | | | | | | the rhosts and hostsequiv stuff with. Andrew Bartlett | |||||
* | tdbtorture updates from when I was trying to track down the hp tdb bug | Andrew Tridgell | 2001-09-24 | 1 | -12/+50 | |
| | ||||||
* | convert all POST variables from display to unix charset | Andrew Tridgell | 2001-09-24 | 2 | -23/+29 | |
| | ||||||
* | Add .headers.stamp | Andrew Bartlett | 2001-09-24 | 1 | -0/+1 | |
| | ||||||
* | Lets call an NTSTATUS an nt_status, not an ecode. | Andrew Bartlett | 2001-09-23 | 1 | -6/+6 | |
| | ||||||
* | Zero out these pstrings before we start: makes for much easier debugging. | Andrew Bartlett | 2001-09-23 | 1 | -2/+2 | |
| | ||||||
* | Fix up NT_STATUS return for session setups, Win2k objects to anything other | Andrew Bartlett | 2001-09-23 | 3 | -12/+7 | |
| | | | | | | | | | | | than NT_STATUS_LOGON_FAILURE. This also brings us (almost) back in line with their implementation. Kill off SMBENCRYPT() macro Kill off 'nt smb support' paramater - tridge okayed this one. Andrew Bartlett | |||||
* | fixed the Makefile so we don't rebuild libsmbclient and build_env.h | Andrew Tridgell | 2001-09-22 | 4 | -642/+655 | |
| | | | | (and thus smbd) every time | |||||
* | Ignore unmappable (NT Authority, BUILTIN etc.) SIDs in an ACL set. | Jeremy Allison | 2001-09-22 | 2 | -0/+35 | |
| | | | | Jeremy. | |||||
* | These are RIDs not Unix UIDs so make this clear in the feild names. | Andrew Bartlett | 2001-09-22 | 2 | -7/+7 | |
| | | | | Andrew Bartlett | |||||
* | Attempt to make quotas work with RH7.1, and with other Linuxen... This is | Jeremy Allison | 2001-09-21 | 5 | -107/+238 | |
| | | | | | *HARD*, dammit ! Jeremy. | |||||
* | fixed the error code handling in can_delete() by converting it to | Andrew Tridgell | 2001-09-21 | 1 | -19/+22 | |
| | | | | NTSTATUS. This gets the right error codes in SMBunlink | |||||
* | Added -s configfile to smbcontrol.c. | Volker Lendecke | 2001-09-21 | 1 | -6/+9 | |
| | | | | Volker | |||||
* | fixed character set for user name pull | Andrew Tridgell | 2001-09-21 | 1 | -4/+3 | |
| | ||||||
* | smbmount fixes from Urban. | Jeremy Allison | 2001-09-20 | 3 | -71/+101 | |
| | | | | Jeremy. | |||||
* | Move pass_check.c over to NTSTATUS, allowing full NTSTATUS from PAM to wire! | Andrew Bartlett | 2001-09-20 | 5 | -174/+247 | |
| | | | | | Add the ability for swat to run in non-root-mode (ie non-root from inetd). - we still need some of the am_root() calls fixed however. | |||||
* | We are not meant to touch the username, so use the pass->pw_name output rather | Andrew Bartlett | 2001-09-20 | 2 | -12/+12 | |
| | | | | than Get_Pwnam(user, True). | |||||
* | Fix up the test for some of the quirkier hosts on the farm, and enable one | Andrew Bartlett | 2001-09-20 | 2 | -5/+4 | |
| | | | | previously disabled sub-test. | |||||
* | Check 'hosts equiv' and 'use rhosts' compatability with 'hostname | Andrew Bartlett | 2001-09-20 | 1 | -0/+16 | |
| | | | | lookup' value. | |||||
* | Rearrange the ordering of the checks in make_connection(). The new order has | Andrew Bartlett | 2001-09-20 | 1 | -37/+56 | |
| | | | | | | | | | some sainity, avoiding things like 'root preexec' when the connection would otherwise already be denied (max connections). This does change behaviour, but I think its for the best. Andrew Bartlett | |||||
* | Add and modify some of the various tests I have had sitting around here for a | Andrew Bartlett | 2001-09-20 | 12 | -10/+147 | |
| | | | | | | little while. This should give us a bit more coverage. Andrew Bartlett | |||||
* | Fix for MiXed and UPPER case usernames with plaintext PAM passwords. | Andrew Bartlett | 2001-09-20 | 2 | -2/+2 | |
| | ||||||
* | Revert this one: The NTLMv2 checks need the original username as found | Andrew Bartlett | 2001-09-20 | 2 | -2/+2 | |
| | | | | on the wire. | |||||
* | - Fix up to use sampass->username insted of user_info->smb_username | Andrew Bartlett | 2001-09-19 | 2 | -14/+14 | |
| | | | | - Fix initial lookup to use the mapped username. | |||||
* | Try to fix up the shell syntax | Andrew Bartlett | 2001-09-19 | 1 | -2/+2 | |
| | ||||||
* | Reran autoconf, autoheader | Andrew Bartlett | 2001-09-19 | 2 | -171/+208 | |
| | ||||||
* | typo | Andrew Bartlett | 2001-09-19 | 1 | -1/+1 | |
| | ||||||
* | Adding the appropirate files might help... | Andrew Bartlett | 2001-09-19 | 2 | -0/+749 | |
| | | | | | | (These are part of the build_options patch). Andrew Bartlett | |||||
* | Add the ability to display Samba's build options with smbd -b and as a level 4 | Andrew Bartlett | 2001-09-19 | 5 | -24/+54 | |
| | | | | | | | | | | | | | | | | | DEBUG(). Also included are details like build date/time, location and compiler. This should get most of the options we set, except those that don't affect smbd, like WITH_PAM_SMBPASSWD or WITH_WINBINDD. This work due to Vance Lankhaar <vlankhaar@hotmail.com> Some work needs to be done to make it only rebuild when needed (ie smbd being rebuilt) but its in pretty good shape already. Also fix up some printf() -> d_printf(). Andrew Bartlett | |||||
* | printf() -> d_printf() | Andrew Bartlett | 2001-09-19 | 1 | -1/+1 | |
| | ||||||
* | This isn't used anymore | Andrew Bartlett | 2001-09-19 | 1 | -1/+0 | |
| | ||||||
* | Use lp_private_dir() not magic on the lp_smb_passwd_file() output. | Andrew Bartlett | 2001-09-19 | 1 | -7/+2 | |
| | ||||||
* | Removed unneeded variable, added comment on deadlock prevention. | Jeremy Allison | 2001-09-19 | 1 | -9/+9 | |
| | | | | Jeremy. | |||||
* | Put pwrite code back in expand_file. | Jeremy Allison | 2001-09-19 | 1 | -3/+10 | |
| | | | | Jeremy. | |||||
* | Removed test code that got added by accident. | Jeremy Allison | 2001-09-19 | 1 | -22/+0 | |
| | | | | Jeremy. | |||||
* | removed anti-race code that could cause a classic ABBA deadlock | Andrew Tridgell | 2001-09-19 | 1 | -21/+1 | |
| | | | | | I'd rather get the connection count wrong with a small probability than deadlock | |||||
* | passdb/pampass.c and passdb/pass_check.c are not passdb related at all, | Andrew Bartlett | 2001-09-19 | 1 | -4/+5 | |
| | | | | so don't link them as such. | |||||
* | added a hook to reopen all tdb's after the server fork | Andrew Tridgell | 2001-09-19 | 3 | -10/+52 | |
| | | | | this prevents the fd seek pointer problem | |||||
* | *llist being NULL is not an error | Andrew Tridgell | 2001-09-19 | 1 | -1/+1 | |
| | ||||||
* | Remove the ugly hacks to get around the Get_Pwnam() calls in pass_check.c by | Andrew Bartlett | 2001-09-19 | 5 | -65/+56 | |
| | | | | | | | | | | | | | simply not doing Get_Pwnam() calls in pass_check.c We now make *one* sys_getpnam() call in cgi.c and we always call PAM no matter what it returns. We also no longer run the password cracker for these logins. The truly parinod will note the slight difference in call paths, in that we only call crypt for valid password structs (if not --with-pam). The truly parinoid don't run SWAT either, so I don't think this is an issue. Andrew Bartlett | |||||
* | Fix (I hope) compile on HP-UX. Found by the build farm. | Andrew Bartlett | 2001-09-19 | 1 | -1/+1 | |
| |