diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-04-01 20:11:26 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-04-01 20:11:26 +0000 |
commit | 32714ab5c5017603973169ae9b2838c40a04fc19 (patch) | |
tree | 429b4339c65cb245fa0de76ea14ee7ef78eccedf /usr.bin/cvs/cvs.h | |
parent | b819b6faeded35903b13ddaa909620d21c0c1238 (diff) |
fix some bugs that lint discovered for us.
ok niallo@
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 36676d999fd..057e0fd4100 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.102 2006/03/15 19:59:36 niallo Exp $ */ +/* $OpenBSD: cvs.h,v 1.103 2006/04/01 20:11:25 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -153,8 +153,8 @@ struct cvs_cmd { - int cmd_op; - int cmd_req; + u_int cmd_op; + u_int cmd_req; char cmd_name[CVS_CMD_MAXNAMELEN]; char cmd_alias[CVS_CMD_MAXALIAS][CVS_CMD_MAXNAMELEN]; char cmd_descr[CVS_CMD_MAXDESCRLEN]; @@ -315,8 +315,6 @@ typedef struct cvs_histfile { } CVSHIST; - -extern char *cvs_req_modulename; extern char *cvs_repo_base; extern char *cvs_command; extern char *cvs_editor; |