diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-26 02:50:47 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-26 02:50:47 +0000 |
commit | 6aa22d3abe9a72898e26f2ea75d631ec6d0271d6 (patch) | |
tree | afb1b10f27e5e3e1e8720c1f769200b5134ad9bd | |
parent | 15f5e7d0e2c43b6c3e30688323f54d6972ac12ec (diff) |
Increase sticky tag buffer size.
Fix suggested by otto and xsa.
-rw-r--r-- | usr.bin/cvs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index 6151b8d340a..41acdc0fb22 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.62 2007/05/25 22:36:47 ray Exp $ */ +/* $OpenBSD: client.c,v 1.63 2007/05/26 02:50:46 ray Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -574,7 +574,7 @@ cvs_client_checkedin(char *data) CVSENTRIES *entlist; struct cvs_ent *ent, *newent; char *dir, *e, entry[CVS_ENT_MAXLINELEN], rev[16], timebuf[64]; - char sticky[16]; + char sticky[CVS_ENT_MAXLINELEN]; if (data == NULL) fatal("Missing argument for Checked-in"); |