summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2007-12-23 01:15:12 +0000
committertedu <tedu@openbsd.org>2007-12-23 01:15:12 +0000
commit394d22f306efe7098b40ccdfabb4b25c14e252e1 (patch)
tree6267d4546d1fe7a02492cc32fcb76c55a94a3d6d
parentremove an obsolete comment art spotted (diff)
downloadwireguard-openbsd-394d22f306efe7098b40ccdfabb4b25c14e252e1.tar.xz
wireguard-openbsd-394d22f306efe7098b40ccdfabb4b25c14e252e1.zip
increase the marker buffers, they are not big enough for hg merge
-rw-r--r--usr.bin/rcs/diff3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/diff3.c b/usr.bin/rcs/diff3.c
index d18231cab12..0672094cd2f 100644
--- a/usr.bin/rcs/diff3.c
+++ b/usr.bin/rcs/diff3.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff3.c,v 1.24 2007/09/10 14:29:53 tobias Exp $ */
+/* $OpenBSD: diff3.c,v 1.25 2007/12/23 01:15:12 tedu Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
@@ -72,7 +72,7 @@ static const char copyright[] =
#ifndef lint
static const char rcsid[] =
- "$OpenBSD: diff3.c,v 1.24 2007/09/10 14:29:53 tobias Exp $";
+ "$OpenBSD: diff3.c,v 1.25 2007/12/23 01:15:12 tedu Exp $";
#endif /* not lint */
#include <ctype.h>
@@ -137,7 +137,7 @@ static int last[4];
static int eflag = 3; /* default -E for compatibility with former RCS */
static int oflag = 1; /* default -E for compatibility with former RCS */
static int debug = 0;
-static char f1mark[40], f3mark[40]; /* markers for -E and -X */
+static char f1mark[256], f3mark[256]; /* markers for -E and -X */
static int duplicate(struct range *, struct range *);
static int edit(struct diff *, int, int);