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
a58210e4
...
a58210e423ced0154acb94b1250df310c29cc6c1
authored
2002-08-07 15:38:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use util_getenv().
1 parent
bc5ab04a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/mailline.c
mail/mailline.c
View file @
a58210e
...
...
@@ -30,7 +30,7 @@ sig_handler (int signo)
switch
(
signo
)
{
case
SIGINT
:
if
(
util_
find_env
(
"quit"
)
->
set
)
if
(
util_
getenv
(
NULL
,
"quit"
,
Mail_env_boolean
,
0
)
==
0
)
exit
(
0
);
_interrupted
++
;
break
;
...
...
Please
register
or
sign in
to post a comment