diff options
author | Christophe Fergeau | 2009-11-17 21:51:41 +0100 |
---|---|---|
committer | Matt Colyer | 2009-11-17 19:24:46 -0800 |
commit | 2d064e04204dc57ba826b0e9ecf83bcd494d008f (patch) | |
tree | b0687d45581966526c73000fcbeff641504d8422 /src/lockdown.h | |
parent | e3b6f3237efae9de0412573ae056b33e0ba48137 (diff) | |
download | libimobiledevice-2d064e04204dc57ba826b0e9ecf83bcd494d008f.tar.gz libimobiledevice-2d064e04204dc57ba826b0e9ecf83bcd494d008f.tar.bz2 |
simplify gnutls_session_t use
gnutls_session_t is already a pointer, we don't need to manipulate a
gnutls_session_t*
[#87 state:resolved]
Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'src/lockdown.h')
-rw-r--r-- | src/lockdown.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lockdown.h b/src/lockdown.h index 5223fbe..9312867 100644 --- a/src/lockdown.h +++ b/src/lockdown.h @@ -29,7 +29,7 @@ struct lockdownd_client_int { iphone_connection_t connection; - gnutls_session_t *ssl_session; + gnutls_session_t ssl_session; gnutls_certificate_credentials_t ssl_certificate; int in_SSL; char session_id[40]; |