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

Diff for /src/usr.bin/ssh/authfile.c between version 1.54 and 1.55

version 1.54, 2003/05/24 09:30:39 version 1.55, 2003/09/18 07:56:05
Line 143 
Line 143 
         fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);          fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0600);
         if (fd < 0) {          if (fd < 0) {
                 error("open %s failed: %s.", filename, strerror(errno));                  error("open %s failed: %s.", filename, strerror(errno));
                   buffer_free(&encrypted);
                 return 0;                  return 0;
         }          }
         if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=          if (write(fd, buffer_ptr(&encrypted), buffer_len(&encrypted)) !=

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