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

Diff for /src/usr.bin/cvs/server.c between version 1.55 and 1.56

version 1.55, 2007/02/22 06:42:09 version 1.56, 2007/05/25 21:58:00
Line 131 
Line 131 
         struct cvs_resp *resp;          struct cvs_resp *resp;
   
         va_start(ap, fmt);          va_start(ap, fmt);
         vasprintf(&data, fmt, ap);          if (vasprintf(&data, fmt, ap) == -1)
                   fatal("vasprintf: %s", strerror(errno));
         va_end(ap);          va_end(ap);
   
         if ((s = strchr(data, ' ')) != NULL)          if ((s = strchr(data, ' ')) != NULL)

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56