From 535af4c6a44c1dcf36d2da1ef0d33c69763bd186 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 16 Mar 2010 02:47:27 +0100 Subject: Rename the *_int to *_private for better semantic and fix public typedefs This changes the typedef logic slightly for the public headers in order for doxygen to correctly pickup and enable the client struct documentation. --- src/lockdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lockdown.c') diff --git a/src/lockdown.c b/src/lockdown.c index 512ec9e..25a6c6a 100644 --- a/src/lockdown.c +++ b/src/lockdown.c @@ -591,7 +591,7 @@ lockdownd_error_t lockdownd_client_new(idevice_t device, lockdownd_client_t *cli return LOCKDOWN_E_MUX_ERROR; } - lockdownd_client_t client_loc = (lockdownd_client_t) malloc(sizeof(struct lockdownd_client_int)); + lockdownd_client_t client_loc = (lockdownd_client_t) malloc(sizeof(struct lockdownd_client_private)); client_loc->parent = plistclient; client_loc->ssl_enabled = 0; client_loc->session_id = NULL; -- cgit v1.1-32-gdbae