Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-05-03 | Initialize nb before use | Panu Matilainen | 1 | -1/+1 | |
2008-04-30 | Rewrite xmlFormat() and remove useless xmlstrlen() and xmlstrcpy() | Jindrich Novy | 1 | -65/+37 | |
2008-04-16 | Oops, only free if allocated ;) | Panu Matilainen | 1 | -2/+4 | |
2008-04-16 | Plug a memory leak in armorFormat() | Panu Matilainen | 1 | -1/+4 | |
2008-04-07 | Remove static print buffer from pgpHexStr, return malloc'ed memory instead | Panu Matilainen | 1 | -1/+2 | |
- inlined to get xmalloc() from system.h for consistent malloc fail behavior - convert callers for new behavior, apart from some debug fprintf()'s | |||||
2008-04-07 | Missing rpmstring.h include | Panu Matilainen | 1 | -0/+1 | |
2008-04-03 | Simplify message key creation in i18nTag() | Jindrich Novy | 1 | -13/+6 | |
2008-03-07 | Another pile of read-only constants marked as such.. | Panu Matilainen | 1 | -2/+2 | |
2008-02-05 | Mass convert (back) to rpmTag as it's usable everywhere now | Panu Matilainen | 1 | -1/+1 | |
- cast away a few cases where the enum usage causes ridiculous amount of compiler warnings from unhandled switch-cases | |||||
2008-02-05 | Use rpmTagType always now that it's available everywhere | Panu Matilainen | 1 | -23/+23 | |
- RPM_MASK_TYPE is not a datatype, move it out of the enum - add missing cases python header handling to shut up gcc | |||||
2008-02-05 | Use rpm_flag_t for header generic bitfields (file flags etc) | Panu Matilainen | 1 | -5/+7 | |
- additionally use rpmfileAtts / rpmVerifyFlags consistently where appropriate | |||||
2008-02-04 | Add rpm_off_t type for file size types, use where spotted | Panu Matilainen | 1 | -2/+2 | |
- preliminaries for bumping up the max size, use rpm-specific type as off_t size varies, header data needs fixed size | |||||
2008-01-30 | Include spring-cleaning | Panu Matilainen | 1 | -2/+2 | |
- put some consistency into include ordering - everything (apart from bits missed ;) is now ordered like this 1. "system.h" 2. other system includes 3. rpm public headers 4. rpm private headers 5. "debug.h" | |||||
2008-01-30 | rpmlib.h mass eviction | Panu Matilainen | 1 | -1/+2 | |
- explicitly include what's really needed instead - document remaining uses | |||||
2008-01-02 | Use size_t, not int for header format padding args | Panu Matilainen | 1 | -8/+8 | |
2007-12-19 | Add rpm_data_t (and _constdata_t) for header data, use everywhere | Panu Matilainen | 1 | -33/+33 | |
- consistent, easy to grep for and change... - bogus consts removed where spotted | |||||
2007-12-19 | Const pedantry | Panu Matilainen | 1 | -8/+10 | |
2007-12-15 | Avoid mixing local malloc with const parameter pointer | Panu Matilainen | 1 | -5/+6 | |
2007-12-14 | Another bunch of bogus const removals | Panu Matilainen | 1 | -2/+2 | |
2007-12-13 | Big bunch of int -> size_t corrections for various signature items | Panu Matilainen | 1 | -4/+4 | |
2007-12-13 | Use rpm_tagtype_t everywhere for rpm (header) tagtype type | Panu Matilainen | 1 | -23/+23 | |
- typedef'ed as uint32_t, doesn't matter much but negative types dont exist - easy to grep, easy to change... - define RPM_FORCEFREE_TYPE instead of -1 "magic" for forcing headerFreeData (ugh), easier to grep for and change than "-1" | |||||
2007-12-13 | Use rpm_tag_t everywhere for rpm (header) tag type | Panu Matilainen | 1 | -1/+1 | |
- typedef'ed as int32_t for now, negative values used in some places for error cases - easy to grep, easy to change... - add RPMTAG_NOT_FOUND define, used in place of -1 "magic", | |||||
2007-12-13 | Use rpm_count_t everywhere for header data count | Panu Matilainen | 1 | -1/+1 | |
- typedef'ed as uint32_t as that's the key size limit imposed by BDB, relevant for RPM_BIN_TYPE - easy to change to whatever later on as it's now consistent everywhere - explicit casts where needed to avoid new warnings from signedness | |||||
2007-12-13 | Use rpm_count_t everywhere for header data count | Panu Matilainen | 1 | -18/+20 | |
- typedef'ed as uint32_t as that's the key size limit imposed by BDB, relevant for RPM_BIN_TYPE - easy to change to whatever later on as it's now consistent everywhere | |||||
2007-12-08 | Switch to <rpm/foo.h> style for public headers | Panu Matilainen | 1 | -4/+4 | |
- adjust include paths accordingly | |||||
2007-12-02 | Move rpmsenseFlag enums to rpmds where they logically belong | Panu Matilainen | 1 | -0/+1 | |
2007-11-27 | Move rpmfiBuildFNames() to rpmfi now that it's possible | Panu Matilainen | 1 | -1/+0 | |
2007-11-27 | Move legacy%#¤%#¤ to librpm now that it can move.. | Panu Matilainen | 1 | -1/+1 | |
2007-11-26 | Type pedantery. | Ralf Corsépius | 1 | -1/+1 | |
2007-11-26 | Eliminate type "byte" | Ralf Corsépius | 1 | -1/+1 | |
2007-11-23 | Expand private include file names to be relative to $(top_srcdir) | Ralf Corsépius | 1 | -3/+3 | |
2007-11-22 | Calculating file checksums aint legacy activity | Panu Matilainen | 1 | -1/+1 | |
- move the checksumming into librpmio - rename domd5() to rpmDoDigest() with future expansion for specifying digest algorithm type (ignored for now) - rearrange parameters to leave return types last - one less rpmio_internal outside rpmio/, whee... - used all over the rpm tree, and it knows about handling prelinked files so potentially useful for outside users, might as well export it - new public header rpmfilutil.h for collecting this sort of stuff | |||||
2007-11-23 | Use #include <x.h> syntax to include public headers. | Ralf Corsépius | 1 | -3/+3 | |
2007-11-16 | Split digest-stuff out of rpmio_internal to separate header | Panu Matilainen | 1 | -1/+1 | |
2007-11-07 | Document rpmio_internal.h uses outside rpmio/ | Panu Matilainen | 1 | -1/+1 | |
2007-11-07 | Remove unused variable | Panu Matilainen | 1 | -1/+0 | |
2007-11-02 | Use NSS instead of beecrypt for encryption (Tomas Mraz) | Panu Matilainen | 1 | -13/+12 | |
2007-10-28 | Include "rpmlib.h" instead of <rpmlib.h>. | Ralf Corsépius | 1 | -1/+1 | |
2007-10-28 | Include "rpmfi.h" instead of <rpmfi.h>. | Ralf Corsépius | 1 | -1/+1 | |
2007-10-28 | Include "rpmmacro.h" instead of <rpmmacro.h>. | Ralf Corsépius | 1 | -1/+1 | |
2007-10-26 | Eliminate [u|]int_[8|16|32]. Use c99 stdint.h types instead. | Ralf Corsépius | 1 | -35/+35 | |
2007-09-20 | Rename tagName/Value/Type() to rpmTagGet*() | Panu Matilainen | 1 | -1/+1 | |
- namespacing - avoid collisions with tagtype definitions | |||||
2007-09-20 | Remove unnecessary include | Panu Matilainen | 1 | -1/+0 | |
2007-09-11 | Remove splint tags. | Ralf Corsépius | 1 | -212/+76 | |
2007-09-03 | Rip out unnecessary selinux babbage. | Panu Matilainen | 1 | -50/+0 | |
- rpm doesn't manage selinux contexts so it doesn't need to know about them other than when creating files - implement --fscontext as popt alias since it's easy to do so... | |||||
2007-09-03 | Kill remaining uses of selinux filecontexts in headers.. | Panu Matilainen | 1 | -25/+0 | |
2007-07-11 | Quiesce false gcc unused variable warning. | Panu Matilainen | 1 | -1/+2 | |
2007-06-18 | Don't segfault on a header without RPMTAG_NAME (rhbz#239557). | Panu Matilainen | 1 | -2/+5 | |
Patch from JBJ. | |||||
2005-01-26 | - add missing #if defined(ENABLE_NLS) (#146184). | jbj | 1 | -0/+2 | |
CVS patchset: 7714 CVS date: 2005/01/26 04:50:03 | |||||
2005-01-17 | Build on macosx. | jbj | 1 | -1/+5 | |
CVS patchset: 7701 CVS date: 2005/01/17 23:58:09 |