[BACK]Return to fetch.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ftp

Diff for /src/usr.bin/ftp/fetch.c between version 1.162 and 1.163

version 1.162, 2017/03/02 09:29:53 version 1.163, 2017/03/07 08:00:23
Line 1031 
Line 1031 
 cleanup_url_get:  cleanup_url_get:
 #ifndef NOSSL  #ifndef NOSSL
         if (tls != NULL) {          if (tls != NULL) {
                 tls_close(tls);                  do {
                           i = tls_close(tls);
                   } while (i == TLS_WANT_POLLIN || i == TLS_WANT_POLLOUT);
                 tls_free(tls);                  tls_free(tls);
         }          }
         free(full_host);          free(full_host);

Legend:
Removed from v.1.162  
changed lines
  Added in v.1.163