diff options
author | Matt Colyer | 2009-04-13 08:48:00 -0700 |
---|---|---|
committer | Matt Colyer | 2009-04-13 08:48:00 -0700 |
commit | 6671ca3d6de6a1fd27853e3b1ce7a81d568703f0 (patch) | |
tree | 735c5ace7ed57cd4e19f2fde423b22e6104eaa98 /dev/main.c | |
parent | bd31783d7fde0b5bd101f4a3f97ca1aca2aa6fab (diff) | |
parent | 288929f45cb2641690879b52ec514097995cd41a (diff) | |
download | libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.gz libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.bz2 |
Merged in Jonathan's libplist libiphone. [#2 state:resolved]
Diffstat (limited to 'dev/main.c')
-rw-r--r-- | dev/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -24,10 +24,8 @@ #include <errno.h> #include <usb.h> -#include <libxml/parser.h> -#include <libxml/tree.h> - #include <libiphone/libiphone.h> +#include "../src/utils.h" void perform_syncWillStart(iphone_device_t phone, iphone_lckd_client_t control) { @@ -77,8 +75,10 @@ int main(int argc, char *argv[]) if (argc > 1 && !strcasecmp(argv[1], "--debug")) { iphone_set_debug(1); + iphone_set_debug_mask(DBGMASK_ALL); } else { iphone_set_debug(0); + iphone_set_debug_mask(DBGMASK_NONE); } if (IPHONE_E_SUCCESS != iphone_get_device(&phone)) { @@ -136,7 +136,7 @@ int main(int argc, char *argv[]) iphone_afc_get_file_attr(afc, "/iTunesOnTheGoPlaylist.plist", &stbuf); if (IPHONE_E_SUCCESS == iphone_afc_open_file(afc, "/iTunesOnTheGoPlaylist.plist", IPHONE_AFC_FILE_READ, &my_file) && my_file) { - printf("A file size: %i\n", stbuf.st_size); + printf("A file size: %i\n", (int) stbuf.st_size); char *file_data = (char *) malloc(sizeof(char) * stbuf.st_size); iphone_afc_read_file(afc, my_file, file_data, stbuf.st_size, &bytes); if (bytes >= 0) { |