From: deraadt Date: Tue, 7 Dec 2021 00:38:42 +0000 (+0000) Subject: Use PATH_MAX (the standard name) rather than MAXPATHLEN (from BSD sys/param.h) X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=6fe22ab4cec4aa403579d34668426138925a9472;p=openbsd Use PATH_MAX (the standard name) rather than MAXPATHLEN (from BSD sys/param.h) --- diff --git a/usr.bin/tmux/procname.c b/usr.bin/tmux/procname.c index 1fcec1bdadf..2ee1aa4b177 100644 --- a/usr.bin/tmux/procname.c +++ b/usr.bin/tmux/procname.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procname.c,v 1.17 2020/04/08 11:26:07 nicm Exp $ */ +/* $OpenBSD: procname.c,v 1.18 2021/12/07 00:38:42 deraadt Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -138,7 +138,7 @@ char * get_proc_cwd(int fd) { int name[] = { CTL_KERN, KERN_PROC_CWD, 0 }; - static char path[MAXPATHLEN]; + static char path[PATH_MAX]; size_t pathlen = sizeof path; if ((name[2] = tcgetpgrp(fd)) == -1)