[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.80 and 1.81

version 1.80, 2008/01/31 10:15:05 version 1.81, 2008/02/10 13:16:35
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*  /*
  * Copyright (c) 2006 Joris Vink <joris@openbsd.org>   * Copyright (c) 2006 Joris Vink <joris@openbsd.org>
  * Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>   * Copyright (c) 2005-2008 Xavier Santolaria <xsa@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 207 
Line 207 
                             cf->file_ent->ce_tag);                              cf->file_ent->ce_tag);
                 else if (verbosity > 0)                  else if (verbosity > 0)
                         cvs_printf("   Sticky Tag:\t\t(none)\n");                          cvs_printf("   Sticky Tag:\t\t(none)\n");
   
                   if (cf->file_ent->ce_date != -1) {
                           struct tm *datetm;
                           char datetmp[CVS_TIME_BUFSZ];
   
                           datetm = gmtime(&(cf->file_ent->ce_date));
                           (void)strftime(datetmp, sizeof(datetmp),
                               "%Y.%m.%d.%H.%M.%S", datetm);
   
                           cvs_printf("   Sticky Date:\t\t%s\n", datetmp);
                   } else if (verbosity > 0)
                           cvs_printf("   Sticky Date:\t\t(none)\n");
   
                 if (cf->file_ent->ce_opts != NULL)                  if (cf->file_ent->ce_opts != NULL)
                         cvs_printf("   Sticky Options:\t%s\n",                          cvs_printf("   Sticky Options:\t%s\n",

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81