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

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/ftp/fetch.c between version 1.194 and 1.195

version 1.194, 2011/09/16 15:39:26 version 1.195, 2011/12/10 05:53:58
Line 52  __RCSID("$NetBSD$");
Line 52  __RCSID("$NetBSD$");
 #include <arpa/ftp.h>  #include <arpa/ftp.h>
 #include <arpa/inet.h>  #include <arpa/inet.h>
   
   #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
 #include <err.h>  #include <err.h>
 #include <errno.h>  #include <errno.h>
Line 1125  fetch_url(const char *url, const char *p
Line 1126  fetch_url(const char *url, const char *p
         (void)xsignal(SIGQUIT, psummary);          (void)xsignal(SIGQUIT, psummary);
         oldintr = xsignal(SIGINT, aborthttp);          oldintr = xsignal(SIGINT, aborthttp);
   
           assert(rcvbuf_size > 0);
         if ((size_t)rcvbuf_size > bufsize) {          if ((size_t)rcvbuf_size > bufsize) {
                 if (xferbuf)                  if (xferbuf)
                         (void)free(xferbuf);                          (void)free(xferbuf);

Legend:
Removed from v.1.194  
changed lines
  Added in v.1.195

CVSweb <webmaster@jp.NetBSD.org>