summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorGravatar Zach C2008-08-12 00:31:56 -0700
committerGravatar Matt Colyer2008-08-12 00:31:56 -0700
commit8d5c88acc75871d2ec59793f312dc0fe0c54351f (patch)
tree0e57f34465af448972be39802d001e4fabdf311b /src/main.c
parent2448b82a1844fbe7cf93bf357152d4936d0c9a4a (diff)
downloadlibimobiledevice-8d5c88acc75871d2ec59793f312dc0fe0c54351f.tar.gz
libimobiledevice-8d5c88acc75871d2ec59793f312dc0fe0c54351f.tar.bz2
Fixed seeking, also connections are no longer added twice.
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 302b886..31c2a76 100644
--- a/src/main.c
+++ b/src/main.c
@@ -124,7 +124,7 @@ int main(int argc, char *argv[]) {
printf("Seek & read\n");
my_file = afc_open_file(afc, "/readme.libiphone.fx", AFC_FILE_READ);
bytes = afc_seek_file(afc, my_file, 5);
- if (!bytes) printf("WARN: SEEK DID NOT WORK\n");
+ if (bytes) printf("WARN: SEEK DID NOT WORK\n");
char *threeletterword = (char*)malloc(sizeof(char) * 5);
bytes = afc_read_file(afc, my_file, threeletterword, 3);
threeletterword[3] = '\0';