diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-12-30 16:47:37 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-12-30 16:47:37 +0000 |
commit | 0b75fabf2a362c8d46c563c1727856429c95590b (patch) | |
tree | 7ce59558027d8b470075e06ebe1ad33d091b898f /usr.bin/cvs/proto.h | |
parent | c652e17dc922f98dd69c8e12c38752bf5491bd30 (diff) |
more code cleanup, ok niallo@ and xsa@
Diffstat (limited to 'usr.bin/cvs/proto.h')
-rw-r--r-- | usr.bin/cvs/proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/proto.h b/usr.bin/cvs/proto.h index 1df7b7ff2a0..cbbfa98a93a 100644 --- a/usr.bin/cvs/proto.h +++ b/usr.bin/cvs/proto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.h,v 1.9 2005/12/30 02:03:28 joris Exp $ */ +/* $OpenBSD: proto.h,v 1.10 2005/12/30 16:47:36 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -184,13 +184,13 @@ char* cvs_resp_getvalid(void); void cvs_sendreq(struct cvsroot *, u_int, const char *); void cvs_getresp(struct cvsroot *); int cvs_sendresp(u_int, const char *); -int cvs_getln(struct cvsroot *, char *, size_t); +void cvs_getln(struct cvsroot *, char *, size_t); void cvs_senddir(struct cvsroot *, CVSFILE *); void cvs_sendarg(struct cvsroot *, const char *, int); void cvs_sendln(struct cvsroot *, const char *); void cvs_sendentry(struct cvsroot *, const CVSFILE *); void cvs_sendraw(struct cvsroot *, const void *, size_t); -ssize_t cvs_recvraw(struct cvsroot *, void *, size_t); +size_t cvs_recvraw(struct cvsroot *, void *, size_t); #endif /* PROTO_H */ |