aboutsummaryrefslogtreecommitdiff
path: root/osdep-openbsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep-openbsd.c')
-rw-r--r--osdep-openbsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep-openbsd.c b/osdep-openbsd.c
index 1fc087d3..b4c8fc56 100644
--- a/osdep-openbsd.c
+++ b/osdep-openbsd.c
@@ -141,7 +141,7 @@ char *
osdep_get_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)