[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.169 and 1.170

version 1.169, 2016/05/04 21:29:47 version 1.170, 2016/05/27 17:05:42
Line 53 
Line 53 
         fprintf(stderr,          fprintf(stderr,
             "usage: %s [-2Cluv] [-c shell-command] [-f file] [-L socket-name]\n"              "usage: %s [-2Cluv] [-c shell-command] [-f file] [-L socket-name]\n"
             "            [-S socket-path] [command [flags]]\n",              "            [-S socket-path] [command [flags]]\n",
             __progname);              getprogname());
         exit(1);          exit(1);
 }  }
   
Line 95 
Line 95 
                 ptr++;                  ptr++;
         else          else
                 ptr = shell;                  ptr = shell;
         progname = __progname;          progname = getprogname();
         if (*progname == '-')          if (*progname == '-')
                 progname++;                  progname++;
         if (strcmp(ptr, progname) == 0)          if (strcmp(ptr, progname) == 0)

Legend:
Removed from v.1.169  
changed lines
  Added in v.1.170