summaryrefslogtreecommitdiffstats
path: root/swig/iphone.i
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-01-22 15:00:16 +0100
committerGravatar Martin Szulecki2010-01-22 15:00:16 +0100
commit82d682b850329f2660fa6c6cc658ec03b5ffbadc (patch)
tree427e63c6e788ced9ae7de6c930dd4ee1644bba72 /swig/iphone.i
parent3183e7c96e7f66d9f0b215d549912411b146dd77 (diff)
downloadlibimobiledevice-82d682b850329f2660fa6c6cc658ec03b5ffbadc.tar.gz
libimobiledevice-82d682b850329f2660fa6c6cc658ec03b5ffbadc.tar.bz2
Rename all *_recv functions to *_receive to match underlying API
Diffstat (limited to 'swig/iphone.i')
-rw-r--r--swig/iphone.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/swig/iphone.i b/swig/iphone.i
index f1969ed..81ef488 100644
--- a/swig/iphone.i
+++ b/swig/iphone.i
@@ -188,7 +188,7 @@ PList::Node* new_node_from_plist(plist_t node)
PList::Node* receive() {
plist_t node = NULL;
- lockdownd_recv($self->client, &node);
+ lockdownd_receive($self->client, &node);
return new_node_from_plist(node);
}
@@ -213,7 +213,7 @@ PList::Node* new_node_from_plist(plist_t node)
PList::Node* receive() {
plist_t node = NULL;
- mobilesync_recv($self->client, &node);
+ mobilesync_receive($self->client, &node);
return new_node_from_plist(node);
}
};