use SYMLOOP_MAX rather than MAXSYMLINKS
authorderaadt <deraadt@openbsd.org>
Mon, 19 Jan 2015 18:37:19 +0000 (18:37 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 19 Jan 2015 18:37:19 +0000 (18:37 +0000)
sys/dev/systrace.c

index ade4097..4336292 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: systrace.c,v 1.71 2014/07/13 23:10:23 deraadt Exp $   */
+/*     $OpenBSD: systrace.c,v 1.72 2015/01/19 18:37:19 deraadt Exp $   */
 /*
  * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  * All rights reserved.
@@ -1516,7 +1516,7 @@ systrace_namei(struct nameidata *ndp)
 
        if (hamper) {
                /* ELOOP if namei() tries to readlink */
-               ndp->ni_loopcnt = MAXSYMLINKS;
+               ndp->ni_loopcnt = SYMLOOP_MAX;
                cnp->cn_flags &= ~FOLLOW;
                cnp->cn_flags |= NOFOLLOW;
        }