summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-07-11 01:32:18 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-07-11 01:32:18 +0000
commit56a628d8eb2ef7e5502580cdede664240556f8bf (patch)
tree68e9ee07f0f965ecb26f98caef2dbde47443db71
parent2b1b23987cffe996994b820c350484a94d956405 (diff)
the status variable is gone.
-rw-r--r--usr.bin/cvs/diff.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c
index a735f44b41e..d65870c17e8 100644
--- a/usr.bin/cvs/diff.c
+++ b/usr.bin/cvs/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.49 2005/07/11 01:26:47 niallo Exp $ */
+/* $OpenBSD: diff.c,v 1.50 2005/07/11 01:32:17 joris Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
@@ -791,7 +791,6 @@ cvs_diffreg(const char *file1, const char *file2)
free(J);
J = NULL;
cvs_log(LP_ERRNO, "failed to resize J");
- status |= 2;
goto closem;
}
J = (int *)tmp;
@@ -803,7 +802,6 @@ cvs_diffreg(const char *file1, const char *file2)
free(ixold);
ixold = NULL;
cvs_log(LP_ERRNO, "failed to resize ixold");
- status |= 2;
goto closem;
}
ixold = (long *)tmp;
@@ -811,7 +809,6 @@ cvs_diffreg(const char *file1, const char *file2)
free(ixnew);
ixnew = NULL;
cvs_log(LP_ERRNO, "failed to resize ixnew");
- status |= 2;
goto closem;
}
ixnew = (long *)tmp;