diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-27 15:55:32 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-27 15:55:32 +0000 |
commit | fc4d1911dd54f655e78c7e21b6b1ec8dfde70ce1 (patch) | |
tree | c3dcb5215f3c57e43033eae7281e22748dd2d713 /usr.bin/cvs/update.c | |
parent | 3001e0e569ce4e6a3175399f1dfb4d39501eb16a (diff) |
Add CF_NOSYMS to the flags so we skip symbolic links
Diffstat (limited to 'usr.bin/cvs/update.c')
-rw-r--r-- | usr.bin/cvs/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/update.c b/usr.bin/cvs/update.c index 74dd7a9bd81..4c39961b91b 100644 --- a/usr.bin/cvs/update.c +++ b/usr.bin/cvs/update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: update.c,v 1.7 2004/08/12 18:02:18 jfb Exp $ */ +/* $OpenBSD: update.c,v 1.8 2004/08/27 15:55:31 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -59,7 +59,7 @@ cvs_update(int argc, char **argv) { int ch, flags; - flags = CF_SORT|CF_RECURSE|CF_IGNORE|CF_KNOWN; + flags = CF_SORT|CF_RECURSE|CF_IGNORE|CF_KNOWN|CF_NOSYMS; while ((ch = getopt(argc, argv, "ACD:dflPpQqRr:")) != -1) { switch (ch) { |