diff options
author | Martin Szulecki | 2009-07-24 23:51:53 +0200 |
---|---|---|
committer | Martin Szulecki | 2009-07-24 23:51:53 +0200 |
commit | 19a28b0ed18c8ca2f855e7d129ddcdb8c939a707 (patch) | |
tree | a8c3dbfd38705bbe73af53193d4c8cfa224ebee2 /swig | |
parent | 83529098fbf4b39b2643a7c0bf39828247d11f9a (diff) | |
download | libimobiledevice-19a28b0ed18c8ca2f855e7d129ddcdb8c939a707.tar.gz libimobiledevice-19a28b0ed18c8ca2f855e7d129ddcdb8c939a707.tar.bz2 |
Use iphone_device_get_uuid() not lockdown, for less overhead where possible
Diffstat (limited to 'swig')
-rw-r--r-- | swig/iphone.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swig/iphone.i b/swig/iphone.i index 59be4ef..64a8727 100644 --- a/swig/iphone.i +++ b/swig/iphone.i @@ -135,7 +135,7 @@ MobileSync* my_new_MobileSync(Lockdownd* lckd) { %newobject get_uuid; char* get_uuid(){ char* uuid = NULL; - uuid = (char *)iphone_get_uuid($self->dev); + uuid = (char *)iphone_device_get_uuid($self->dev); return uuid; } |