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

Diff for /src/usr.bin/tmux/tmux.c between version 1.126 and 1.127

version 1.126, 2013/10/10 12:29:35 version 1.127, 2014/01/09 14:05:55
Line 361 
Line 361 
                 }                  }
         }          }
         free(label);          free(label);
         strlcpy(socket_path, path, sizeof socket_path);  
           if (strlcpy(socket_path, path, sizeof socket_path) >= sizeof socket_path) {
                   fprintf(stderr, "socket path too long: %s\n", path);
                   exit(1);
           }
         free(path);          free(path);
   
         /* Set process title. */          /* Set process title. */

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.127