diff options
author | 2005-07-11 01:32:17 +0000 | |
---|---|---|
committer | 2005-07-11 01:32:17 +0000 | |
commit | 12e122a84b306bd1c95690a20a70e5a6d9b4d66d (patch) | |
tree | a5d17ab8d39df13a2c434051f15f9429ea623e51 /usr.bin/cvs/diff.c | |
parent | sync (diff) | |
download | wireguard-openbsd-12e122a84b306bd1c95690a20a70e5a6d9b4d66d.tar.xz wireguard-openbsd-12e122a84b306bd1c95690a20a70e5a6d9b4d66d.zip |
the status variable is gone.
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 5 |
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; |