Added a patch for Cyrus SASL to fix the regression on iOS. See https://bugzilla.cyrusimap.org/show_bug.cgi?id=3796
parent
ee24f79981
commit
6f5b57bc46
@ -0,0 +1,12 @@
|
||||
diff -ur cyrus-sasl-2.1.25/lib/client.c cyrus-sasl-2.1.25.new/lib/client.c
|
||||
--- cyrus-sasl-2.1.25/lib/client.c 2011-09-02 05:58:01.000000000 -0700
|
||||
+++ cyrus-sasl-2.1.25.new/lib/client.c 2013-06-01 23:23:00.000000000 -0700
|
||||
@@ -504,7 +504,7 @@
|
||||
/* get the clientFQDN (serverFQDN was set in _sasl_conn_init) */
|
||||
memset(name, 0, sizeof(name));
|
||||
if (get_fqhostname (name, MAXHOSTNAMELEN, 0) != 0) {
|
||||
- return (SASL_FAIL);
|
||||
+ gethostname(name, MAXHOSTNAMELEN);
|
||||
}
|
||||
|
||||
result = _sasl_strdup(name, &conn->clientFQDN, NULL);
|
Loading…
Reference in new issue