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

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

version 1.37, 2005/07/08 11:46:23 version 1.38, 2005/07/08 12:45:10
Line 273 
Line 273 
                 return (0);                  return (0);
         }          }
   
         cvs_printf("   Sticky Tag:\t\t%s\n",          if (cf->cf_tag != NULL)
             cf->cf_tag == NULL ? "(none)" : cf->cf_tag);                  cvs_printf("   Sticky Tag:\t\t%s\n", cf->cf_tag);
         cvs_printf("   Sticky Date:\t\t%s\n", "(none)");          else if (verbosity > 0)
         cvs_printf("   Sticky Options:\t%s\n",                  cvs_printf("   Sticky Tag:\t\t(none)\n");
             cf->cf_opts == NULL ? "(none)" : cf->cf_opts);  
           /* XXX */
           if (verbosity > 0)
                   cvs_printf("   Sticky Date:\t\t%s\n", "(none)");
   
           if (cf->cf_opts != NULL)
                   cvs_printf("   Sticky Options:\t%s\n", cf->cf_opts);
           else if (verbosity > 0)
                   cvs_printf("   Sticky Options:\t(none)\n");
   
         cvs_printf("\n");          cvs_printf("\n");
         rcs_close(rf);          rcs_close(rf);

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