diff options
author | ewt <devnull@localhost> | 1998-12-16 21:58:53 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1998-12-16 21:58:53 +0000 |
commit | 10d3b6d5b6784c8a3c1680497af3e0a15e5e884a (patch) | |
tree | 1cc948eb6a0724ce736b0fb7dd80bb9820b0ce0c /lib/lookup.c | |
parent | 033797c0ef831a0fd0a8e7ccf4f014e3476a67de (diff) | |
download | librpm-tizen-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.gz librpm-tizen-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.tar.bz2 librpm-tizen-10d3b6d5b6784c8a3c1680497af3e0a15e5e884a.zip |
first pass at new transaction api; basic installing/removing works
fine but I wouldn't push it much harder then that
CVS patchset: 2603
CVS date: 1998/12/16 21:58:53
Diffstat (limited to 'lib/lookup.c')
-rw-r--r-- | lib/lookup.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/lookup.c b/lib/lookup.c index 77fa3900e..e01fbe57b 100644 --- a/lib/lookup.c +++ b/lib/lookup.c @@ -2,9 +2,6 @@ #include "rpmlib.h" -static int findMatches(rpmdb db, char * name, char * version, char * release, - dbiIndexSet * matches); - /* 0 found matches */ /* 1 no matches */ /* 2 error */ @@ -57,7 +54,7 @@ int rpmdbFindByLabel(rpmdb db, char * arg, dbiIndexSet * matches) { /* 0 found matches */ /* 1 no matches */ /* 2 error */ -static int findMatches(rpmdb db, char * name, char * version, char * release, +int findMatches(rpmdb db, char * name, char * version, char * release, dbiIndexSet * matches) { int gotMatches; int rc; |