[BACK]Return to sftp-common.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sftp-common.c between version 1.23 and 1.24

version 1.23, 2010/01/15 09:24:23 version 1.24, 2013/05/17 00:13:14
Line 124 
Line 124 
                         type = buffer_get_string(b, NULL);                          type = buffer_get_string(b, NULL);
                         data = buffer_get_string(b, NULL);                          data = buffer_get_string(b, NULL);
                         debug3("Got file attribute \"%s\"", type);                          debug3("Got file attribute \"%s\"", type);
                         xfree(type);                          free(type);
                         xfree(data);                          free(data);
                 }                  }
         }          }
         return &a;          return &a;

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24