summaryrefslogtreecommitdiff
path: root/source3/lib
AgeCommit message (Collapse)AuthorFilesLines
2008-01-24More read_data -> read_socket_with_timeoutVolker Lendecke1-16/+3
(This used to be commit f1d7de462cf0f64648a3a1fc6f0c64a7bbdb3c2a)
2008-01-23read_socket_with_timeout has timeout=0 handlingVolker Lendecke1-38/+1
(This used to be commit 7101026061c470ed962267b43ac0aa67cc761a64)
2008-01-23strtok -> strtok_rVolker Lendecke2-16/+18
(This used to be commit fd34ce437057bb34cdc37f4b066e424000d36789)
2008-01-23Fix tab_depth: it should not create an extra debug header.Michael Adam1-1/+1
In pstring removal 4ae4b23586, the behaviour of tab_depth was changed to create an extra debug header (by using the DEBUGLVL macro). This extracts the debug level check from DEBUGLVL into a macro CHECK_DEBUGLVL without the debug header creation and uses this instead of DEBUGLVL in tab_depth. Michael (This used to be commit cbc7d921fa696e6c3c5197ad9f87442ba679df82)
2008-01-22Move samba_extended_info_version to smbd/trans2.cVolker Lendecke1-32/+0
This is right now only used there, and in version.c it gave linker errors because some binaries (e.g. smbmnt) don't link in time.o (This used to be commit 1f0eaaa5911f893c822465a26fe49ab65afb0730)
2008-01-22Avoid use of uninitialized memoryVolker Lendecke1-1/+4
(This used to be commit 85123aacdb13e97c3f44aeded1c80e13af53d83d)
2008-01-22Get Samba version or capability information from WindowsCorinna Vinschen1-0/+29
On Jan 21 16:18, Danilo Almeida wrote: > Corina wrote: > > > + time_t samba_gitcommitdate; > > And: > > > + SIVAL(pdata,28,extended_info.samba_gitcommitdate); > > + memcpy(pdata+32,extended_info.samba_version_string,32); > > Note that you are dropping bits on a system w/64-bit time_t, and that this has the 2038 problem. Right. I changed samba_gitcommitdate from time_t to NTTIME and shortened samba_version_string to 28 bytes. New patch below. Thanks, Corinna (This used to be commit 28aa1c199d3a22cda34afcaab49c0561eeb0abcb)
2008-01-22libreplace: getpwent_r/getgrent_r on IRIX are similar to solaris but use size_tStefan Metzmacher1-0/+25
metze (This used to be commit 2f460915111066d79f5dc9b4ae4d003918d06852)
2008-01-21util_sock: Don't return a pointer to freed memory.Kai Blin1-1/+2
Fix a bug in my bugfix. Thanks to vl for spotting that one. (This used to be commit 24f68b90cca111256a7b03f7062cb57c2b08a0d6)
2008-01-21util_sock: Fix memcache bug in get_mydnsfullname.Kai Blin1-3/+3
get_mydnsfullname relied on memcache_add(); memcache_lookup() working. When run from ntlm_auth, the global_cache variable in memcache is NULL, so the add and lookup both fail. In that case, just return the result of the getaddrinfo call. Jeremy, please check. (This used to be commit 1db41ff52565e9f336a22fb9ffd80d51677e023b)
2008-01-21Rename lib/util_reg_smbconf.c to registry/reg_init_smbconf.cMichael Adam1-97/+0
This actually is a counterpart to reg_init_full, in that is does open and initialize the registry too, but only registeres the backends necessary to access the SMBCONF key. Michael (This used to be commit 01bda3ab359fb3868c1dc849044f613bf2bc563e)
2008-01-20Fix some "set but never used" warningsVolker Lendecke1-3/+1
(This used to be commit 4a6dadc5178f4861e9c032321939db3b639734b5)
2008-01-20Some systems do not have XATTR_ definedVolker Lendecke1-5/+0
(This used to be commit 2cac1d3919a96c480f34c93d8b9b07782d46ed23)
2008-01-19Add "split_ntfs_stream_name()" together with a torture testVolker Lendecke1-0/+90
(This used to be commit d813bd9e02d9baf916eb96c478be89f0c435e07c)
2008-01-19Add an error mapping for ENOATTRVolker Lendecke1-0/+3
(This used to be commit 9f0d778490415b05224f36287df999672ee16928)
2008-01-19Use SAFE_FREE instead of freeVolker Lendecke1-1/+2
(This used to be commit 999647329028147d7c29a3348202641b3e03430e)
2008-01-19Tiny memory leak in lib/version.cCorinna Vinschen1-0/+1
Hi, while implementing the extra_info version stuff, it occured to me that samba_version_string() potentially allocates memory which is unused but never free'd. If SAMBA_VERSION_VENDOR_PATCH is defined, a second call to asprintf takes place. The result is stored in tmp_version. Afterwards, samba_version is set to tmp_version without free'ing samba_version first. Looks like a simple free(samba_version) is missing. Patch against 3.2-test below. Ok, this only happens once over the lifetime of the application, so it's no big deal, but I though it doesn't hurt to mention it. Corinna * lib/version.c (samba_version_string): Free samba_version before setting to tmp_version. (This used to be commit 373a23d48f2dd24e65dbf814ea58b4add2322128)
2008-01-19afs: Use talloc_stackframe() instead of talloc_init()Kai Blin1-1/+1
Thanks to vl for pointing this out. (This used to be commit 76cf5a979bf3014b1de660520e538546b3676b23)
2008-01-19util_str: Don't return memory from talloc_tos(), use mem_ctx instead.Kai Blin2-13/+16
(This used to be commit ab0ee6e9a6a9eee317228f0c2bde254ad9a59b85)
2008-01-18Revert "Host SerNet-AIX has __ss_family instead of ss_family in ↵Stefan Metzmacher1-4/+0
sockaddr_storage" This reverts commit e33286f4a68352e55df081d06307f64f190773b3. 393bab185e0e9f02aac5740becc2aba2762133c8 is the v4-0-test fix for the same problem. metze (This used to be commit b8a57a24c390355c4950ca499c1d96aff80abad7)
2008-01-18libreplace: Escape asterisk.Jelmer Vernooij1-1/+1
(cherry picked from commit df36c78549b40ee5e47d5cc79de2eb79f58c567a) (This used to be commit 174a45ec18fff064d89f6a12b044973ab3c10c54)
2008-01-18Try to fix the build on Tru64; avoid single quotes because they get expanded ↵Jelmer Vernooij1-1/+1
by perl in the build system. (cherry picked from commit bba8914af56cb161c275fbbdea2479d6f8bd703c) (This used to be commit a0e663ff2c6548e48c9710e3fb314f3bbabb59d0)
2008-01-18r26550: libreplace: fallback to __ss_family of struct sockaddr_storageStefan Metzmacher2-0/+29
metze (cherry picked from commit 11bdc9bed80b9842ac1ab8f22509a5d191cddc91) (This used to be commit c11122afda52ce787dd1d3357bd85b6ce36b8ca4)
2008-01-18r26102: libreplace: remove system/printing.h as it only contains samba3 stuffStefan Metzmacher2-51/+0
metze (cherry picked from commit 1ecb4ec01b0506c95a5f90a62040329e7a39ee93) (This used to be commit ff8a001f0d3f2655efafed41f2f0b14552a5c7e7)
2008-01-18r25976: libreplace: not all platforms like _XOPEN_SOURCE=600Stefan Metzmacher1-2/+5
- Only use _XOPEN_SOURCE=600 on Tru64 - _OSF_SOURCE is also Tru64 specific metze (cherry picked from commit d19ab62081ce4ee4273ff752ad0443782a994826) (This used to be commit dbff70b2ebe7cc09f7fbe5a0319f978dfcfa1da9)
2008-01-18r25974: libreplace: see what the build-farm says if we use _XOPEN_SOURCE=600Stefan Metzmacher1-0/+1
On Tru64 this brings in socklen_t and some other socket stuff metze (cherry picked from commit d42f2e5759332f1f0c6c1269bd29ac62ddb11016) (This used to be commit af3772e22f5e6e0158783086e9791ffc95ee5368)
2008-01-18r25971: libreplace: remove AC_EXTENSION_FLAG as it's the same as AC_N_DEFINEStefan Metzmacher2-15/+2
metze (cherry picked from commit 05b4619c5beff474488d1abe5e647acd94a3e20c) (This used to be commit 58932ca791024bd9a543ff5e21bc26970ceed477)
2008-01-18r25970: libreplace: fix AC_N_DEFINE() so that some appears in config.hStefan Metzmacher1-5/+12
metze (cherry picked from commit a07c983fde52607806745914bb41039afb5618cc) (This used to be commit 3db37038b3e5a59a9baa85f6bcd32ac6e5ec2da1)
2008-01-18Fix the build w/o ADS.Günther Deschner1-0/+4
Guenther (This used to be commit 645f2376d40fabdc787902ac7506ad7234616619)
2008-01-18Add header for NetGetJoinableOUs to libnetapi.Günther Deschner1-0/+11
Guenther (This used to be commit f297ea259d58f7a12924b7111ab79818188cff46)
2008-01-18merged changes from v4-0-testAndrew Tridgell2-43/+43
(This used to be commit 8c89d60924b0380231da834cd3c097b4f8cdc369)
2008-01-18Add NetGetJoinableOUs() to libnetapi (incl. example).Günther Deschner3-3/+309
Guenther (This used to be commit 8858e403e1940c362d307b4d4125f977abb0b96a)
2008-01-18Cosmetics and error string reporting for libnetapi.Günther Deschner3-16/+114
Guenther (This used to be commit 4ca33928512bd71268bafd41d2b608e814a7295f)
2008-01-18Add some more debugging into netdomjoin-gui.Günther Deschner1-4/+9
Guenther (This used to be commit d4c5b323229c6f43c824e3559084c98e370730a5)
2008-01-18Fix local hostname detection in netdomjoin-gui.Günther Deschner1-10/+27
Guenther (This used to be commit 30458116b389889cad845eb96b54c3edc833e722)
2008-01-18Improve libnetapi_set_error_string().Günther Deschner2-7/+39
Guenther (This used to be commit 96f645553ae5c75aabfe588e1a67f3d4bfacb5cb)
2008-01-17Use new pidl-generated netlogon client calls in NetApi GetDcName().Günther Deschner2-38/+8
Guenther (This used to be commit 733e07a06ce3c903ff5837df6a5119f6d6e3eccb)
2008-01-16Fix IPv6 bug #5204, which caused krb5 DNS lookupsJeremy Allison1-2/+25
for a name '[<ipv6 addr>'. Jeremy. (This used to be commit f2aa921505e49f894bfed4e5e2f9fc01918b1bb0)
2008-01-16Don't try ftruncate when the tdb is opened read-onlyVolker Lendecke1-0/+1
Tridge, Jeremy, please check! Thanks, Volker (This used to be commit e4f46d527411c54e8f26c05033b744c751810c32)
2008-01-16Next try to fix the max dead record calculationVolker Lendecke1-1/+1
(This used to be commit 4f95c58040f46f343f55f9a5db2655a5e3b62c00)
2008-01-16Fix some C++ warningsVolker Lendecke1-2/+5
(This used to be commit 625241c4773ae5c80dd0cb0c07a86aff633c1ede)
2008-01-16Fix a missing prototype warningVolker Lendecke1-0/+1
(This used to be commit 871cee04f26da97756804b38acfd366b6011dc9e)
2008-01-16Add "config backend" to the parameters forbidden in registry config.Michael Adam1-0/+1
Make registry based configs more fool-proof. Michael (This used to be commit 2ea55c03b25eb5e98be3449e12004a7246319acd)
2008-01-16Use lp_config_backend_is_registry() instead of lp_include_registry_globals().Michael Adam1-1/+1
Michael (This used to be commit c5a7d421c512a6221b0300549d7b5de0368d252e)
2008-01-16Merge CTDB-related fixes from samba-ctdb 3.0 branch ↵Alexander Bokovoy9-85/+276
(http://samba.org/~tridge/3_0-ctdb) Signed-off-by: Alexander Bokovoy <ab@samba.org>(This used to be commit 0c8e23afbbb2d081fc23908bafcad04650bfacea)
2008-01-15Port from ctdb:Jeremy Allison1-16/+6
minor fix to transaction_write_existing: tridge. Jeremy. (This used to be commit 874425c8f680fb2f737b46a3177b239e69302af5)
2008-01-14From Alexander BokovoyJeremy Allison1-1/+1
names is a 'const char **names' here, passed from upper level. Passing 'names' as a talloc context will break things as 'names' is usually likely is a local variable, not a talloc'd. And we want to have array elements on a context of the array anyway. Jeremy. (This used to be commit 22a4129fabf70e01cc638c2f7347c28201838830)
2008-01-14samba3 already has tdb_validate()Andrew Tridgell2-43/+0
(This used to be commit 9f002eeff9bcf33a00e5641cb14338e866a17afe)
2008-01-14merged tdb fix from ctdb treeAndrew Tridgell3-0/+123
(This used to be commit c91e9c785b5bf4b0c479edf8eb33da22bf615387)
2008-01-13Fix the max_dead_record calculationsVolker Lendecke1-4/+1
(This used to be commit 4aaf4e7e73a5c7fa97ef730fbff5c7cb12df2d6c)