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
dab2a03e
...
dab2a03e9ed8ca6f5ba9937b7adf7cd40b284edd
authored
2008-03-15 12:37:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_tls_argp_parser): Take care not to pass NULL as the argument to the "tls" statement.
1 parent
aaa222bb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
ChangeLog
libargp/radius.c
libargp/tls.c
ChangeLog
View file @
dab2a03
2008-03-15 Sergey Poznyakoff <gray@gnu.org.ua>
* libargp/tls.c (_tls_argp_parser): Take care not to pass NULL as
the argument to the "tls" statement.
2008-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
* comsat/comsat.c, imap4d/imap4d.c, imap4d/preauth.c,
...
...
libargp/radius.c
View file @
dab2a03
...
...
@@ -38,7 +38,7 @@ static struct argp_option mu_radius_argp_option[] = {
{
"radius-getpwuid-request"
,
OPT_GETPWUID_REQUEST
,
N_
(
"REQUEST"
),
OPTION_HIDDEN
,
N_
(
"Radius request to retrieve a passwd entry based on UID"
),
0
},
{
"radius-directory"
,
OPT_RADIUS_DIR
,
N_
(
"DIR"
),
OPTION_HIDDEN
,
N_
(
"Set
path to
the radius configuration directory"
),
0
},
N_
(
"Set
name of
the radius configuration directory"
),
0
},
{
NULL
}
};
...
...
libargp/tls.c
View file @
dab2a03
...
...
@@ -49,7 +49,7 @@ _tls_argp_parser (int key, char *arg, struct argp_state *state)
switch
(
key
)
{
case
OPT_TLS
:
mu_argp_node_list_new
(
&
lst
,
"tls"
,
arg
);
mu_argp_node_list_new
(
&
lst
,
"tls"
,
arg
?
arg
:
"yes"
);
break
;
case
OPT_SSL_CERT
:
...
...
Please
register
or
sign in
to post a comment