summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* | abstract UUID parsing code to an individual function; patch from AnthonyGerald Carter2003-10-031-7/+26
| | | | | | | | (This used to be commit 9365c619d6feb15289d963e9e70e1f947b7f8c3f)
* | Moving towards better i18n support in SWAT. This commit contains aTim Potter2003-10-034-92/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bunch of updates to bug 413 from Monyo: 1) pick up proper strings to call msg strings for example to add strings in wizard menu in web/swat.c, web/statuspage.c and param/loadparm.c. 2) define N_() macro in include/intl.h to pick up some strings in param/loadparm.c 3) quote all name and value tag with '"' For example in swat.c:720 the "Edit Parameter Values" string is displayd only as "Edit" because value tag is not quoted like: value=Edit Parameter Values These tags should be quoted though it sometimes works well without quotation. 4) modify the msg strings not to contain HTML tags or other non-message strings. For example dprintf(_("test\n")); is modified to dprintf("%s\n", _("test")); (This used to be commit 351d16956d8125bc689ca84adcb71e0a57d6b7cc)
* | Explicitly initialise the value of AR for vendor makes that don't doTim Potter2003-10-032-0/+3
| | | | | | | | | | | | | | this (HPUX 11). Currently it's initialised to 'ar' but this may have to be changed if any systems pop up that have archivers that aren't named 'ar'. Closes bug #552. (This used to be commit 6aada3bd3e08abedc4c043d1ceb667ca73f8cd62)
* | Portability fix from Joachim Schmitz. Closes bug #546.Tim Potter2003-10-021-1/+1
| | | | | | | | (This used to be commit 803ae4517265e4bb4639c4966e104b392913c7c0)
* | fixed for /sbin/mount.smbfs link when using $DESTDIR; bug 525Gerald Carter2003-10-022-7/+12
| | | | | | | | (This used to be commit dc6d14c2bd1a8509e40c198065b8dc930c37d3ed)
* | Portability fixes from schmitz@hp.com (Joachim Schmitz). Bug #549.Jeremy Allison2003-10-023-1/+30
| | | | | | | | | | Jeremy. (This used to be commit 93669f329eccec34d4a1da6239ae9759f067fb8b)
* | Portability fix from schmitz@hp.com (Joachim Schmitz). Bug #547.Jeremy Allison2003-10-021-0/+4
| | | | | | | | | | Jeremy. (This used to be commit bbc7b189b9b4b3a5ef0a5ddbb7d2d755f6341fdf)
* | Portability fix from schmitz@hp.com (Joachim Schmitz) for bug #548.Jeremy Allison2003-10-021-1/+1
| | | | | | | | | | Jeremy. (This used to be commit 6677eba28a1f2de11c36e3edc5b7d2854452bd04)
* | Correct fix for excel read-only bug. Add panic for logic error in developer ↵Jeremy Allison2003-10-022-6/+7
| | | | | | | | | | | | | | mode. Jeremy. (This used to be commit f00af98f379463829b1ef62d78dda0365c1d7997)
* | Make pdb_ldap.c compile with SUN iPlanet headers. Whether this works will beVolker Lendecke2003-10-021-1/+1
| | | | | | | | | | | | | | tested soon, but this fix is somewhat obvious. Volker (This used to be commit 227882d6f79fb5909998996e1be08df723c49e8e)
* | Fix for not opening Excel 2000 files that are read-only. Needs tidyingJeremy Allison2003-10-021-3/+4
| | | | | | | | | | | | up but works for now. Jeremy. (This used to be commit 9ad9e0dfafed4558e5ab215991d9912cd44f1127)
* | Remove duplicate function (now in rpc_parse/parse_prs.c) and fix a RPC debugAndrew Bartlett2003-10-011-21/+1
| | | | | | | | | | | | | | (I renamed the element of the structure). Andrew Bartlett (This used to be commit 641652cad97b761ba11d4e89b7c9ad098c7dd1c2)
* | commit sign only patch from Andrew; bug 167; tested using 2k & XP ↵Gerald Carter2003-10-016-114/+159
| | | | | | | | | | | | clientspreviously joined to the Samba domain (This used to be commit 3802f5895ee18507c6f467bd11db0b1147a6fdfd)
* | Fixed silly typo checking for signal_handler not signal.Jeremy Allison2003-10-011-1/+1
| | | | | | | | | | Jeremy. (This used to be commit 6c38a79be796935ab24764302805deea878b360d)
* | Allow ^C to interrupt smbpasswd if using our getpass.Jeremy Allison2003-10-011-62/+86
| | | | | | | | | | Jeremy. (This used to be commit 7d79a55d9af517ed63f8a4641bbc34564a4ef889)
* | save and restore CFLAGS before/after AC_PROG_CC; this macro seems to ↵Gerald Carter2003-10-011-0/+9
| | | | | | | | | | | | overwrite the CFLAGS variable (This used to be commit dbf7fc4feb7f9c7cb720ce2dcbc8bb16badfe1f2)
* | wrap internals of sys_setgroups() so the sys_XX() call can be done ↵Gerald Carter2003-10-012-4/+6
| | | | | | | | | | | | unconditionally; bug 550 (This used to be commit 9df3f53e6ae751d522c7ac21deb785f1fa05f225)
* | mark 'mangled map' as depcreated and remove 'mangled stack'Gerald Carter2003-10-011-4/+1
| | | | | | | | (This used to be commit cd06472e420ba0647a73c6e04d180c088acdb626)
* | when we don't have a working iconv library we must default to using only ↵Andrew Tridgell2003-09-301-1/+1
| | | | | | | | | | | | builtin charsets. Defaulting to CP850 when we have just determined that it doesn't work just guarantees that Samba won't work at all (in fact it just seg faults at startup). This fixes Samba on AIX, and I expect on a bunch of other platforms. (This used to be commit 9635a28181525e5e8cfb8ef77642446a0a4ba280)
* | Take care of condition where DOS and NT error codes must differ. Found byJeremy Allison2003-09-291-1/+1
| | | | | | | | | | | | DOS program test by Amir Hardon <hardon@actcom.co.il>. Jeremy. (This used to be commit c11a7e5846002b16d0cb2991b5a7df0636b070d5)
* | Apply some NULL pointer paranoia to previous wins hook fix.Tim Potter2003-09-291-2/+2
| | | | | | | | (This used to be commit 0281c5b764971c5300b99b82d89c812ded5a1335)
* | Fix broken wins hook functionality. A i18n fixe caused the name typeTim Potter2003-09-291-2/+8
| | | | | | | | | | | | to be appended to the netbios name between angle brackets. This interfered the 'sh -c' used to implement smbrun(). Closes bug #528. (This used to be commit 92b37b3ef097e84adace1295af42853c07ddbec2)
* | Testparm fixes:Jelmer Vernooij2003-09-291-3/+9
| | | | | | | | | | | | | | | | - Also check global 'hosts allow'/'hosts deny' when checking access to share - Warn when user specifies 2 arguments instead of 1 or 3. Patch from Jay Fenlason <fenlason@redhat.com> (This used to be commit 2690c185f01b8fb4307dc803fb90c00400f2da69)
* | Change AC_CHECK_LIB_EXT to prepend libraries instead of append. ThisTim Potter2003-09-281-1/+1
| | | | | | | | | | | | | | | | is the same way AC_CHECK_LIB works. Fix for bug 508. This may have to go a few rounds on the build farm to ensure it works everywhere. (This used to be commit afe8c708f1a7f0c0eb5b7f28b5af193c75ec2178)
* | iconv isn't const safe. Neither should smb_iconv be.Jeremy Allison2003-09-271-1/+1
| | | | | | | | | | Jeremy. (This used to be commit 238bb74c16417140d85a304890b97e04df389ae9)
* | Ensure %S gets expanded in read/write lists.Jeremy Allison2003-09-261-6/+13
| | | | | | | | | | Jeremy. (This used to be commit 7d7096fc3a899349b46691dcc30b86b04964fe52)
* | Fix for valid users = %S in homes share.Jeremy Allison2003-09-261-3/+7
| | | | | | | | | | Jeremy. (This used to be commit c7f4e56ad5c25d477f20944e5b404ebafda9e1a8)
* | don't write to static pointers; patch from AnthonyGerald Carter2003-09-261-1/+1
| | | | | | | | (This used to be commit 5840cbe5f6207471ccd3d518a6aee91d84e24a1f)
* | Fix to parse the level-2 strings. From Anthony Liguori aliguor@us.ibm.com.Jeremy Allison2003-09-261-16/+4
| | | | | | | | | | Jeremy. (This used to be commit e4c955c98e90901b047c475f204af93a57578248)
* | More bug #413. Fix bad html table row termination in SWAT wizard code found byTim Potter2003-09-261-4/+3
| | | | | | | | | | Monyo. Also remove debugging d_printf() which snuck in the last commit. (This used to be commit 0192f41003af0f8e8c117cf7eb8ad886b8b03749)
* | Change title of SWAT globals page from 'Global Variables' to 'GlobalTim Potter2003-09-261-1/+3
| | | | | | | | | | Parameters' to be more consistent with the other pages. (This used to be commit 02725d4a3cff5bf0b676c363200795d4cadecca1)
* | Allow d_printf() to handle strings with escaped quotation marks since theTim Potter2003-09-261-2/+33
| | | | | | | | | | | | | | msg file includes the escape character. Fixes bug #489. (This used to be commit 8ce279e47184623e74f795294ffba842e4f2e848)
* | Fix for #480. Change the interface for init_unistr2 to not take a lengthJeremy Allison2003-09-2522-650/+467
| | | | | | | | | | | | | | but a flags field. We were assuming that 2*strlen(mb_string) == length of ucs2-le string. This is not the case. Count it after conversion. Jeremy. (This used to be commit f82c273a42f930c7152cfab84394781744815e0e)
* | Don't #ifdef an AFS option with WITH_ADS. Thanks, jerry!Volker Lendecke2003-09-241-1/+1
| | | | | | | | | | Volker (This used to be commit a6c54cbe205a6882d49fc77c04ed21b4f1de4396)
* | Fix bug #456 for 3.0.0 release.Tim Potter2003-09-242-1/+27
| | | | | | | | | | More work on SWAT i18n support to appear in later releases. (This used to be commit c3267749054ade219d214bdaf6c21e4207bd2011)
* | fixing a bug in the retry loop for winbindd_pam_auth[_crap]()Gerald Carter2003-09-241-15/+25
| | | | | | | | (This used to be commit a83266a927b81a9f7a62b211793faaf8d401767c)
* | This only touches the fake kaserver support. It adds two parameters:Volker Lendecke2003-09-234-28/+49
| | | | | | | | | | | | | | | | | | | | afs share -- this is an AFS share, do AFS magic things afs username map -- We need a way to specify the cell and possibly weird username codings for several windows domains in the afs cell Volker (This used to be commit 4a3f7a9356cd5068d9ed4fd6e2336d9bf7923fbd)
* | Add a descriptive comment to our usage of setresuid. lib/afs.c needsVolker Lendecke2003-09-231-0/+4
| | | | | | | | | | | | | | to be changed if we decide to set our real uid. Jeremy? Volker (This used to be commit 1fed55aa781bcf9efdd42f361c972b69152137a4)
* | Reformat - preparing to fix bug #480 (which will be ugly).Jeremy Allison2003-09-221-81/+59
| | | | | | | | | | Jeremy. (This used to be commit 605e257cab8041900ec9c6839c37e04d005a420e)
* | fix some warnings found by the Sun C compilerGerald Carter2003-09-227-10/+8
| | | | | | | | (This used to be commit e1fac713e25692a5790c3261ba323732930f5249)
* | Fix return of result. Patch from Yasuma Takeda <yasuma@miraclelinux.com>Jeremy Allison2003-09-221-0/+1
| | | | | | | | | | Jeremy. (This used to be commit 95e33b1250abbbb3a0ad5e9fa1586d545e51322b)
* | Applied Monyo's patch for bug #412 which allows \n characters toTim Potter2003-09-221-0/+2
| | | | | | | | | | appear in msg strings. (This used to be commit 53a2a389902b6ffa37dd61f0c0a496744fc2e2b3)
* | Fix typoJelmer Vernooij2003-09-211-1/+1
| | | | | | | | (This used to be commit 37db75fc95aec2510a0ead0c97f44e80b00696d9)
* | Fix a bug and warn when configuration file values are incorrect. Thanks toJelmer Vernooij2003-09-201-10/+28
| | | | | | | | | | Wilco Baan Hofman <wilco@andoburg.nl> (This used to be commit 2c584efae69f328581d4f863a8f8ef3ff8228423)
* | Ensure that dup_sec_desc copies the 'type' field correctly. This causedJeremy Allison2003-09-198-24/+26
| | | | | | | | | | | | | | | | me to expose a type arguement to make_sec_desc(). We weren't copying the SE_DESC_DACL_AUTO_INHERITED flag which could cause errors on auto inherited checks. Jeremy. (This used to be commit 28b315a7501f42928d73efaa75f74146ba95cf2d)
* | Fix pdb_mysql. Jelmer will look into details tonight.Alexander Bokovoy2003-09-191-3/+5
| | | | | | | | (This used to be commit b00a81b543a58f46e54ce0e5362ba21bb16fc35f)
* | Put in some DEBUGs for swat language selection. Part of bug 456.Tim Potter2003-09-191-13/+22
| | | | | | | | (This used to be commit bbe4ae8af2918808a1fd3547602c909f42a54634)
* | The "unknown_5" 32 bit field in the user structs is actually 2 16-bitJeremy Allison2003-09-1811-52/+129
| | | | | | | | | | | | | | | | | | | | | | | | fields, bad_password_count and logon_count. Ensure this is stored/fetched in the various SAMs. As it replaces the unknown_5 field this fits exactly into the tdb SAM without any binary problems. It also is added to the LDAP SAM as two extra attributes. It breaks compatibility with the experimental SAMs xml and mysql. The maintainers of these SAMs must fix them so upgrades like this can be done transparently. I will insist on the "experimental" status until this is solved. Jeremy. (This used to be commit cd7bd8c2daff3293d48f3376a7c5a708a140fd94)
* | Oops. Proper fix for #470.Jeremy Allison2003-09-181-18/+20
| | | | | | | | | | Jeremy. (This used to be commit 82f98b066d345fdac40a584078a19453bda53d5b)
* | Fix for #470 - unable to display SIDs in ACLs.Jeremy Allison2003-09-181-2/+11
| | | | | | | | | | Jeremy. (This used to be commit 56df89eff38e4c89defa5fd56bbb6c9d2012f82d)