summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxsa <xsa@openbsd.org>2005-11-28 10:17:20 +0000
committerxsa <xsa@openbsd.org>2005-11-28 10:17:20 +0000
commit29744cf08902120ed60a8c8aab885b7d58cf3c0c (patch)
tree9ac867ec2424c2ce33a0b688bfb871bf7dfe613e
parentdo not overflow ifr.ifr_addr; ok mpf, henning, hshoexer, deraadt (diff)
downloadwireguard-openbsd-29744cf08902120ed60a8c8aab885b7d58cf3c0c.tar.xz
wireguard-openbsd-29744cf08902120ed60a8c8aab885b7d58cf3c0c.zip
-T is here for compatibility;
-rw-r--r--usr.bin/rcs/rcsdiff.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsdiff.c b/usr.bin/rcs/rcsdiff.c
index 55290b4e9cd..40f6b9ee2ab 100644
--- a/usr.bin/rcs/rcsdiff.c
+++ b/usr.bin/rcs/rcsdiff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcsdiff.c,v 1.20 2005/11/25 15:56:10 xsa Exp $ */
+/* $OpenBSD: rcsdiff.c,v 1.21 2005/11/28 10:17:20 xsa Exp $ */
/*
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
* All rights reserved.
@@ -97,7 +97,9 @@ rcsdiff_main(int argc, char **argv)
}
break;
case 'T':
- flags |= PRESERVETIME;
+ /*
+ * kept for compatibility
+ */
break;
case 'V':
printf("%s\n", rcs_version);