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
f76b6560
...
f76b656090b0227675461f78d3393673f26d8c86
authored
2003-02-08 02:20:12 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu_spawnvp): Bugfix, PROG was not used.
1 parent
8bd664aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
f76b656
...
...
@@ -648,7 +648,7 @@ mu_spawnvp (const char* prog, const char* const av_[], int* stat)
sigaction
(
SIGQUIT
,
&
savequit
,
NULL
);
sigprocmask
(
SIG_SETMASK
,
&
savemask
,
NULL
);
execvp
(
av
[
0
]
,
av
);
execvp
(
prog
,
av
);
#ifdef HAVE__EXIT
_exit
(
127
);
/* exec error */
#else
...
...
Please
register
or
sign in
to post a comment