diff options
author | 2005-11-28 10:17:20 +0000 | |
---|---|---|
committer | 2005-11-28 10:17:20 +0000 | |
commit | 29744cf08902120ed60a8c8aab885b7d58cf3c0c (patch) | |
tree | 9ac867ec2424c2ce33a0b688bfb871bf7dfe613e | |
parent | do not overflow ifr.ifr_addr; ok mpf, henning, hshoexer, deraadt (diff) | |
download | wireguard-openbsd-29744cf08902120ed60a8c8aab885b7d58cf3c0c.tar.xz wireguard-openbsd-29744cf08902120ed60a8c8aab885b7d58cf3c0c.zip |
-T is here for compatibility;
-rw-r--r-- | usr.bin/rcs/rcsdiff.c | 6 |
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); |