diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-01-26 08:35:24 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-01-26 08:35:24 +0000 |
commit | 84979f88d4e0950e98cd9f0f3e8658553f0725a3 (patch) | |
tree | bcfeb92ee2f1585ef2c0861bf3bd9091cd3128f2 /usr.bin/cvs | |
parent | 22648c5c3d27bbb205d87ef4c50483b05185f0bd (diff) |
modestring can be 18 long
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/remote.c b/usr.bin/cvs/remote.c index ed338820c18..d8dd0333bd2 100644 --- a/usr.bin/cvs/remote.c +++ b/usr.bin/cvs/remote.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remote.c,v 1.10 2007/01/25 18:56:33 otto Exp $ */ +/* $OpenBSD: remote.c,v 1.11 2007/01/26 08:35:23 otto Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -156,7 +156,7 @@ cvs_remote_send_file(const char *path) size_t ret, rw; off_t total; struct stat st; - char buf[16], data[MAXBSIZE]; + char buf[18], data[MAXBSIZE]; if (cvs_server_active) out = stdout; |