lua: adapt to new API

Use new apk_blob_pull_dep instead of the old apk_dep_from_blob
cute-signatures
Natanael Copa 2011-10-20 12:43:12 +00:00
parent 7622ccf49f
commit bd0242e1de
1 changed files with 4 additions and 3 deletions

View File

@ -204,10 +204,11 @@ static int Papk_exists(lua_State *L)
struct apk_dependency dep;
struct apk_name *name;
struct apk_package *pkg;
int i, r;
int i;
apk_blob_t blob = APK_BLOB_STR(depstr);
apk_blob_pull_dep(&blob, db, &dep);
r = apk_dep_from_blob(&dep, db, APK_BLOB_STR(depstr));
if (r != 0)
if (APK_BLOB_IS_NULL(blob))
goto ret_nil;
name = dep.name;