Ticket #35098: patch.diff

File patch.diff, 514 bytes (added by is+apple@…, 12 years ago)

Patch obtained from FreeBSD

  • lib/saslutil.c

    old new  
    556556                 &hints,
    557557                 &result) != 0) {
    558558       /* errno on Unix, WSASetLastError on Windows are already done by the function */
    559        return (-1);
     559       if (abort_if_no_fqdn) {
     560           return (-1);
     561       } else {
     562           goto LOWERCASE;
     563       }
    560564    }
    561565
    562566    if (abort_if_no_fqdn && (result == NULL || result->ai_canonname == NULL)) {