diff options
author | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-06-03 03:05:11 +0000 |
---|---|---|
committer | Niall O'Higgins <niallo@cvs.openbsd.org> | 2006-06-03 03:05:11 +0000 |
commit | 473ce5e5393eec33250a56e7099e936f185b4c6e (patch) | |
tree | 584c9e4f8744ae9b95312fbb94db1fa4dbe0a7f7 /usr.bin/rcs/co.c | |
parent | d3954d00718d59490c2155794b044ea59f92597f (diff) |
- correctly handle binary files; say bye bye to using c strings for deltatexts.
"slap it in" joris@
Diffstat (limited to 'usr.bin/rcs/co.c')
-rw-r--r-- | usr.bin/rcs/co.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index dd88f6adbcc..ce42c96ff5a 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.94 2006/05/28 23:16:31 ray Exp $ */ +/* $OpenBSD: co.c,v 1.95 2006/06/03 03:05:10 niallo Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -353,7 +353,6 @@ checkout_rev(RCSFILE *file, RCSNUM *frev, const char *dst, int flags, */ if (file->rf_ndelta != 0) bp = rcs_kwexp_buf(bp, file, rev); - /* * File inherits permissions from its ,v file */ |