Move to using PATH_MAX
authorderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 00:18:06 +0000 (00:18 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 00:18:06 +0000 (00:18 +0000)
ok millert guenther

sys/dev/systrace.h

index 18a9b9e..d458eb7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: systrace.h,v 1.23 2011/09/18 23:24:14 matthew Exp $   */
+/*     $OpenBSD: systrace.h,v 1.24 2015/01/16 00:18:06 deraadt Exp $   */
 /*
  * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  * All rights reserved.
@@ -47,7 +47,7 @@ struct str_msg_ugid {
 };
 
 struct str_msg_execve {
-       char path[MAXPATHLEN];
+       char path[PATH_MAX];
 };
 
 #define SYSTR_MAX_POLICIES     64
@@ -109,7 +109,7 @@ struct systrace_answer {
 
 struct systrace_scriptname {
        pid_t sn_pid;
-       char  sn_scriptname[MAXPATHLEN];
+       char  sn_scriptname[PATH_MAX];
 };
 
 #define SYSTR_READ             1