From b224c3886924d181e2699d799826d3e631d5f90f Mon Sep 17 00:00:00 2001 From: Logan Collins Date: Thu, 7 May 2015 14:21:25 -0700 Subject: [PATCH] Fix in stransport_stream.c for usage of SecCopyErrorMessageString(), which is unavailable to iOS targets. --- src/stransport_stream.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/stransport_stream.c b/src/stransport_stream.c index d316c3769..34c38b22d 100644 --- a/src/stransport_stream.c +++ b/src/stransport_stream.c @@ -24,11 +24,16 @@ int stransport_error(OSStatus ret) return 0; } +#if !TARGET_OS_IPHONE message = SecCopyErrorMessageString(ret, NULL); GITERR_CHECK_ALLOC(message); giterr_set(GITERR_NET, "SecureTransport error: %s", CFStringGetCStringPtr(message, kCFStringEncodingUTF8)); CFRelease(message); +#else + giterr_set(GITERR_NET, "SecureTransport error: OSStatus %d", (unsigned int)ret); +#endif + return -1; }