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

Diff for /src/usr.bin/cvs/cvs.c between version 1.41 and 1.42

version 1.41, 2005/03/06 21:09:00 version 1.42, 2005/03/08 16:13:30
Line 309 
Line 309 
   
 void             usage        (void);  void             usage        (void);
 void             sigchld_hdlr (int);  void             sigchld_hdlr (int);
 void             cvs_read_rcfile   (void);  static void             cvs_read_rcfile   (void);
 struct cvs_cmd*  cvs_findcmd  (const char *);  static struct cvs_cmd*  cvs_findcmd  (const char *);
 int              cvs_getopt   (int, char **);  int              cvs_getopt   (int, char **);
   
   
Line 538 
Line 538 
  * aliases matches <cmd>.   * aliases matches <cmd>.
  * Returns a pointer to the command entry on success, NULL on failure.   * Returns a pointer to the command entry on success, NULL on failure.
  */   */
 struct cvs_cmd*  static struct cvs_cmd*
 cvs_findcmd(const char *cmd)  cvs_findcmd(const char *cmd)
 {  {
         u_int i, j;          u_int i, j;
Line 570 
Line 570 
  * exists, it should contain a list of arguments that should always be given   * exists, it should contain a list of arguments that should always be given
  * implicitly to the specified commands.   * implicitly to the specified commands.
  */   */
 void  static void
 cvs_read_rcfile(void)  cvs_read_rcfile(void)
 {  {
         char rcpath[MAXPATHLEN], linebuf[128], *lp;          char rcpath[MAXPATHLEN], linebuf[128], *lp;

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42