Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zsh
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Debian
zsh
Commits
2e69ece5
Commit
2e69ece5
authored
Aug 23, 2015
by
Jun-ichi Takimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
users/20455: do not use posix_openpt() on OpenBSD
parent
43079e5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
ChangeLog
ChangeLog
+5
-0
Src/Modules/zpty.c
Src/Modules/zpty.c
+2
-1
No files found.
ChangeLog
View file @
2e69ece5
2015-08-23 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
* users/20455: Src/Modules/zpty.c: do not use posix_openpt()
on OpenBSD
2015-08-22 Barton E. Schaefer <schaefer@zsh.org>
* 36274: Src/Zle/zle_vi.c: clear virangeflag when getvirange()
...
...
Src/Modules/zpty.c
View file @
2e69ece5
...
...
@@ -154,7 +154,8 @@ getptycmd(char *name)
return
NULL
;
}
#ifdef USE_DEV_PTMX
/* posix_openpt() seems to have some problem on OpenBSD */
#if defined(USE_DEV_PTMX) && !defined(__OpenBSD__)
#ifdef HAVE_SYS_STROPTS_H
#include <sys/stropts.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment