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

Diff for /src/usr.bin/rup/rup.c between version 1.30 and 1.31

version 1.30, 2015/08/20 22:32:41 version 1.31, 2017/03/20 16:10:10
Line 131 
Line 131 
                 struct rup_data *newrup;                  struct rup_data *newrup;
   
                 newsize = rup_data_max + 16;                  newsize = rup_data_max + 16;
                 newrup = reallocarray(rup_data, newsize,                  newrup = recallocarray(rup_data, rup_data_max, newsize,
                     sizeof(struct rup_data));                      sizeof(struct rup_data));
                 if (newrup == NULL) {                  if (newrup == NULL) {
                         err(1, NULL);                          err(1, NULL);

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31