summaryrefslogtreecommitdiff
path: root/lib/rpmts.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2010-03-22 12:40:27 +0200
committerPanu Matilainen <pmatilai@redhat.com>2010-03-22 12:40:27 +0200
commite307f8df46870dc890bd65ef3ca0ad025f24375a (patch)
tree702e79b105e40b7d8e0eb165338a6be8f4ddfdb7 /lib/rpmts.h
parent7911e17982e1deb685163dc8294775466237db63 (diff)
downloadlibrpm-tizen-e307f8df46870dc890bd65ef3ca0ad025f24375a.tar.gz
librpm-tizen-e307f8df46870dc890bd65ef3ca0ad025f24375a.tar.bz2
librpm-tizen-e307f8df46870dc890bd65ef3ca0ad025f24375a.zip
Lose the useless rpmts refcounting debug messages + debug switches
- get the debug messages out of API, this is what should've been in commit dbdbe8010cd944f026a5a4e5d071eb31d29d81c4 - just wtf have I been thinking? - also tolerate NULL passed to rpmtsLink() and rpmtsUnlink()
Diffstat (limited to 'lib/rpmts.h')
-rw-r--r--lib/rpmts.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/rpmts.h b/lib/rpmts.h
index 7abc4c5b8..fad4dfa84 100644
--- a/lib/rpmts.h
+++ b/lib/rpmts.h
@@ -20,7 +20,6 @@
extern "C" {
#endif
-extern int _rpmts_debug;
extern int _rpmts_stats;
/** \ingroup rpmts
@@ -198,19 +197,16 @@ int rpmtsRun(rpmts ts, rpmps okProbs, rpmprobFilterFlags ignoreSet);
/** \ingroup rpmts
* Unreference a transaction instance.
* @param ts transaction set
- * @param msg
* @return NULL always
*/
-rpmts rpmtsUnlink (rpmts ts,
- const char * msg);
+rpmts rpmtsUnlink (rpmts ts);
/** \ingroup rpmts
* Reference a transaction set instance.
* @param ts transaction set
- * @param msg
* @return new transaction set reference
*/
-rpmts rpmtsLink (rpmts ts, const char * msg);
+rpmts rpmtsLink (rpmts ts);
/** \ingroup rpmts
* Close the database used by the transaction.