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

Diff for /src/usr.bin/rcs/rcsprog.c between version 1.33 and 1.34

version 1.33, 2005/10/18 16:20:31 version 1.34, 2005/10/19 00:30:22
Line 46 
Line 46 
   
 const char rcs_version[] = "OpenCVS RCS version 3.6";  const char rcs_version[] = "OpenCVS RCS version 3.6";
 int verbose = 1;  int verbose = 1;
   int pipeout = 0;
   
 int     rcs_optind;  int     rcs_optind;
 char    *rcs_optarg;  char    *rcs_optarg;
Line 208 
Line 209 
         if ((verbose == 1) && (strcmp(__progname, "rcsclean"))) {          if ((verbose == 1) && (strcmp(__progname, "rcsclean"))) {
                 if (!strcmp(__progname, "co")) {                  if (!strcmp(__progname, "co")) {
                         printf("%s --> ", fpath);                          printf("%s --> ", fpath);
                         if ((s = strrchr(filev, ',')) != NULL) {                          if (pipeout == 1) {
                                 *s = '\0';                                  printf("standard output\n");
                                 printf("%s\n", fname);                          } else {
                                   if ((s = strrchr(filev, ',')) != NULL) {
                                           *s = '\0';
                                           printf("%s\n", fname);
                                   }
                         }                          }
                 } else {                  } else {
                         printf("RCS file: %s\n", fpath);                          printf("RCS file: %s\n", fpath);

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34