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

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

version 1.33, 2005/10/16 11:29:28 version 1.34, 2005/10/16 11:35:11
Line 51 
Line 51 
 #define DATE_MTIME      -2  #define DATE_MTIME      -2
   
 static char * checkin_diff_file(RCSFILE *, RCSNUM *, const char *);  static char * checkin_diff_file(RCSFILE *, RCSNUM *, const char *);
 static char * checkin_getlogmsg(char *, RCSNUM *, RCSNUM *);  static char * checkin_getlogmsg(RCSNUM *, RCSNUM *);
   
 void  void
 checkin_usage(void)  checkin_usage(void)
Line 268 
Line 268 
                  * If no log message specified, get it interactively.                   * If no log message specified, get it interactively.
                  */                   */
                 if (rcs_msg == NULL)                  if (rcs_msg == NULL)
                         rcs_msg = checkin_getlogmsg(fpath, frev, newrev);                          rcs_msg = checkin_getlogmsg(frev, newrev);
   
                 /*                  /*
                  * Remove the lock                   * Remove the lock
Line 409 
Line 409 
  * Get log message from user interactively.   * Get log message from user interactively.
  */   */
 static char *  static char *
 checkin_getlogmsg(char *rcsfile, RCSNUM *rev, RCSNUM *rev2)  checkin_getlogmsg(RCSNUM *rev, RCSNUM *rev2)
 {  {
         char   *rcs_msg, buf[128], nrev[16], prev[16];          char   *rcs_msg, buf[128], nrev[16], prev[16];
         BUF    *logbuf;          BUF    *logbuf;

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