From: ewt Date: Sat, 24 Feb 1996 23:46:36 +0000 (+0000) Subject: got rid of INSTALL_PRINTLABEL, added labelFormat to rpmInstallPackage X-Git-Tag: rpm-4.4-release~5319 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c8dc8f29e01b98a4ab13f72c6a1d26b54fa8c30;p=platform%2Fupstream%2Frpm.git got rid of INSTALL_PRINTLABEL, added labelFormat to rpmInstallPackage CVS patchset: 416 CVS date: 1996/02/24 23:46:36 --- diff --git a/lib/rpmlib.h b/lib/rpmlib.h index 9577d6c..adf3064 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -71,8 +71,7 @@ #define INSTALL_REPLACEPKG (1 << 0) #define INSTALL_REPLACEFILES (1 << 1) #define INSTALL_TEST (1 << 2) -#define INSTALL_PRINTLABEL (1 << 3) -#define INSTALL_UPGRADE (1 << 4) +#define INSTALL_UPGRADE (1 << 3) #define VERIFY_NONE 0 #define VERIFY_MD5 (1 << 0) @@ -139,7 +138,7 @@ int rpmdbFindPackage(rpmdb db, char * name, dbIndexSet * matches); int rpmInstallSourcePackage(char * prefix, int fd, char ** specFile); int rpmInstallPackage(char * prefix, rpmdb db, int fd, int flags, - notifyFunction notify); + notifyFunction notify, char * labelFormat); int rpmRemovePackage(char * prefix, rpmdb db, unsigned int offset, int test); int rpmdbRemove(rpmdb db, unsigned int offset, int tolerant); int rpmdbAdd(rpmdb db, Header dbentry);