diff options
author | 2008-02-27 22:34:04 +0000 | |
---|---|---|
committer | 2008-02-27 22:34:04 +0000 | |
commit | 2e0d696a647f8fb113d2fe228a1dbcc2a0e8f3ba (patch) | |
tree | e08ab1d8e3e4c434de85b9179acf7b7b5aa87360 /usr.bin/cvs/diff.h | |
parent | Don't dump duplicate data in stack segments of core dumps when the stack (diff) | |
download | wireguard-openbsd-2e0d696a647f8fb113d2fe228a1dbcc2a0e8f3ba.tar.xz wireguard-openbsd-2e0d696a647f8fb113d2fe228a1dbcc2a0e8f3ba.zip |
prevent file races
ok tobias@
Diffstat (limited to 'usr.bin/cvs/diff.h')
-rw-r--r-- | usr.bin/cvs/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/diff.h b/usr.bin/cvs/diff.h index 24d883e128b..2b488f20c48 100644 --- a/usr.bin/cvs/diff.h +++ b/usr.bin/cvs/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.15 2008/02/03 18:18:44 tobias Exp $ */ +/* $OpenBSD: diff.h,v 1.16 2008/02/27 22:34:04 joris Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -93,7 +93,7 @@ void cvs_merge_file(struct cvs_file *, int); void diff_output(const char *, ...); -int cvs_diffreg(const char *, const char *, BUF *out); +int cvs_diffreg(const char *, const char *, int, int, BUF *); int ed_patch_lines(struct cvs_lines *, struct cvs_lines *); extern int diff_format; |