From 82d682b850329f2660fa6c6cc658ec03b5ffbadc Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 22 Jan 2010 15:00:16 +0100 Subject: Rename all *_recv functions to *_receive to match underlying API --- swig/iphone.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'swig/iphone.i') 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); } }; -- cgit v1.1-32-gdbae