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
0b72b8f6
...
0b72b8f6bf3931d4469aade81ca155ad2e34862e
authored
2002-03-25 10:38:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Protected _exit by #ifdef.
1 parent
703dffed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
0b72b8f
...
...
@@ -747,7 +747,11 @@ int mu_spawnvp(const char* prog, const char* const av_[], int* stat)
sigprocmask
(
SIG_SETMASK
,
&
savemask
,
NULL
);
execvp
(
av
[
0
],
av
);
exit
(
127
);
/* exec error */
#ifdef HAVE__EXIT
_exit
(
127
);
/* exec error */
#else
exit
(
127
);
#endif
}
else
{
/* parent */
...
...
Please
register
or
sign in
to post a comment