mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Merge pull request #3093 from topcat001/pathfix
Use PATH_MAX instead of MAXPATHLEN.
This commit is contained in:
		@@ -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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user