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

Diff for /src/usr.bin/ssh/mux.c between version 1.60 and 1.61

version 1.60, 2016/06/03 03:14:41 version 1.61, 2016/08/08 22:40:57
Line 2116 
Line 2116 
   
         if (strlcpy(addr.sun_path, path,          if (strlcpy(addr.sun_path, path,
             sizeof(addr.sun_path)) >= sizeof(addr.sun_path))              sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
                 fatal("ControlPath too long");                  fatal("ControlPath too long ('%s' >= %u bytes)", path,
                        (unsigned int)sizeof(addr.sun_path));
   
         if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)          if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
                 fatal("%s socket(): %s", __func__, strerror(errno));                  fatal("%s socket(): %s", __func__, strerror(errno));

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61