]> git.ipfire.org Git - pakfire.git/commitdiff
libpakfire: Drop pakfire_pool_search
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Jan 2018 18:45:49 +0000 (19:45 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Jan 2018 18:45:49 +0000 (19:45 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/include/pakfire/pool.h
src/libpakfire/libpakfire.sym
src/libpakfire/pool.c

index 3e6a22a1e96d711351ca32b03279b49f23c00db6..799e37c7b6915884f3d708e3f2a8b8c93cc1c099 100644 (file)
@@ -32,8 +32,6 @@ const char* pakfire_pool_get_cache_path(PakfirePool pool);
 void pakfire_pool_set_cache_path(PakfirePool pool, const char* path);
 PakfireCache pakfire_pool_get_cache(PakfirePool pool);
 
-PakfirePackageList pakfire_pool_search(PakfirePool pool, const char* what, int flags);
-
 #ifdef PAKFIRE_PRIVATE
 
 #include <solv/pool.h>
index 2aae07235927a7b1e8156364cd4b39bb37eac0b7..dcb3ea0a858bb14904ae5baae20b48c7a8bd618e 100644 (file)
@@ -206,7 +206,6 @@ global:
        pakfire_pool_create;
        pakfire_pool_get_cache_path;
        pakfire_pool_ref;
-       pakfire_pool_search;
        pakfire_pool_set_cache_path;
        pakfire_pool_unref;
 
index 7cdf7a1bfab880750116a4cbcfa02dc4e040bce0..3fa20bc117dd0d0693a5b524fa1cfce9d7c59004 100644 (file)
@@ -104,10 +104,6 @@ PAKFIRE_EXPORT PakfireCache pakfire_pool_get_cache(PakfirePool pool) {
        return NULL;
 }
 
-PakfirePackageList pakfire_pool_search(PakfirePool pool, const char* what, int flags) {
-       return pakfire_search(pool->pakfire, what, flags);
-}
-
 PAKFIRE_EXPORT char* pakfire_pool_tmpdup(Pool* pool, const char* s) {
        char* dup = pool_alloctmpspace(pool, strlen(s) + 1);