RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Jeff Johnson
Root: /v/rpm/cvs Email: jbj@rpm5.org
Module: rpm Date: 25-Oct-2007 17:20:22
Branch: HEAD Handle: 2007102516202200
Modified files:
rpm/lib rpmts.c rpmts.h
Log:
- rename rpmtsDbmode and rpmtsSetDbmode with sTUdly caps.
Summary:
Revision Changes Path
2.115 +2 -2 rpm/lib/rpmts.c
2.82 +2 -2 rpm/lib/rpmts.h
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/lib/rpmts.c
============================================================================
$ cvs diff -u -r2.114 -r2.115 rpmts.c
--- rpm/lib/rpmts.c 19 Oct 2007 00:36:44 -0000 2.114
+++ rpm/lib/rpmts.c 25 Oct 2007 15:20:22 -0000 2.115
@@ -1215,12 +1215,12 @@
return ogoal;
}
-int rpmtsDbmode(rpmts ts)
+int rpmtsDBMode(rpmts ts)
{
return (ts != NULL ? ts->dbmode : 0);
}
-int rpmtsSetDbmode(rpmts ts, int dbmode)
+int rpmtsSetDBMode(rpmts ts, int dbmode)
{
int odbmode = 0;
if (ts != NULL) {
@@ .
patch -p0 <<'@@ .'
Index: rpm/lib/rpmts.h
============================================================================
$ cvs diff -u -r2.81 -r2.82 rpmts.h
--- rpm/lib/rpmts.h 13 Oct 2007 08:42:08 -0000 2.81
+++ rpm/lib/rpmts.h 25 Oct 2007 15:20:22 -0000 2.82
@@ -891,7 +891,7 @@
* @param ts transaction set
* @return dbmode
*/
-int rpmtsDbmode(rpmts ts)
+int rpmtsDBMode(rpmts ts)
/*@*/;
/**
@@ -900,7 +900,7 @@
* @param dbmode new dbmode
* @return previous dbmode
*/
-int rpmtsSetDbmode(rpmts ts, int dbmode)
+int rpmtsSetDBMode(rpmts ts, int dbmode)
/*@modifies ts @*/;
/**
@@ .
Received on Thu Oct 25 17:20:22 2007