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
02f3549d
...
02f3549d5c056758fafcbe9de8051424a7f118db
authored
2002-07-23 18:31:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_parse_opt): Fixed dereference of child_inputs. Thanks to Jordi Mallach.
1 parent
b1c8f405
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
pop3d/pop3d.c
pop3d/pop3d.c
View file @
02f3549
...
...
@@ -57,11 +57,11 @@ static struct argp argp = {
};
static
const
char
*
pop3d_argp_capa
[]
=
{
"common"
,
"license"
,
"daemon"
,
"logging"
,
"auth"
,
"common"
,
"logging"
,
"license"
,
NULL
};
...
...
@@ -71,7 +71,7 @@ pop3d_parse_opt (int key, char *arg, struct argp_state *astate)
switch
(
key
)
{
case
ARGP_KEY_INIT
:
astate
->
child_inputs
[
1
]
=
astate
->
input
;
astate
->
child_inputs
[
0
]
=
astate
->
input
;
break
;
default:
...
...
Please
register
or
sign in
to post a comment