Use downloaded plist.h

This commit is contained in:
Jackson Coxson
2025-08-12 07:52:44 -06:00
parent c79fb2226a
commit 4c9977157b
5 changed files with 16 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
// Jackson Coxson
#include "idevice.h"
#include "plist/plist.h"
#include "plist.h"
#include <arpa/inet.h>
#include <stdint.h>
#include <stdio.h>
@@ -122,7 +122,7 @@ int main() {
// Get all values
plist_t all_values = NULL;
err = lockdownd_get_all_values(client, NULL, &all_values);
err = lockdownd_get_value(client, NULL, NULL, &all_values);
if (err != NULL) {
fprintf(stderr, "Failed to get all values: [%d] %s", err->code,
err->message);