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

Diff for /src/usr.bin/cvs/server.c between version 1.37 and 1.38

version 1.37, 2006/11/14 09:59:54 version 1.38, 2006/11/14 14:45:31
Line 219 
Line 219 
 void  void
 cvs_server_globalopt(char *data)  cvs_server_globalopt(char *data)
 {  {
         if (!strcmp(data, "-t"))          if (!strcmp(data, "-l"))
                 cvs_trace = 1;                  cvs_nolog = 1;
   
         if (!strcmp(data, "-n"))          if (!strcmp(data, "-n"))
                 cvs_noexec = 1;                  cvs_noexec = 1;
   
           if (!strcmp(data, "-Q"))
                   verbosity = 0;
   
           if (!strcmp(data, "-r"))
                   cvs_readonly = 1;
   
           if (!strcmp(data, "-t"))
                   cvs_trace = 1;
   
         if (!strcmp(data, "-V"))          if (!strcmp(data, "-V"))
                 verbosity = 2;                  verbosity = 2;

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38