Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
5220a9bc
...
5220a9bc6523a3fa41ab04e6565693371ec84db1
authored
2002-03-25 09:52:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
_exit is not portable.
1 parent
58e3e034
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
5220a9b
...
...
@@ -746,8 +746,8 @@ int mu_spawnvp(const char* prog, const char* const av_[], int* stat)
sigaction
(
SIGQUIT
,
&
savequit
,
NULL
);
sigprocmask
(
SIG_SETMASK
,
&
savemask
,
NULL
);
execvp
(
av
[
0
],
av
);
_
exit
(
127
);
/* exec error */
execvp
(
av
[
0
],
av
);
exit
(
127
);
/* exec error */
}
else
{
/* parent */
...
...
Please
register
or
sign in
to post a comment