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
ab777d35
...
ab777d35a954b2967c264b7ddc256d02a4cbbbb9
authored
2002-08-13 13:35:04 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(var_insert): Changed declaration to avoid `auth shadows parameter' warning.
1 parent
806e4686
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mail/var.c
mail/var.c
View file @
ab777d3
...
...
@@ -228,11 +228,11 @@ var_headers(int argc, char **argv, struct send_environ *env)
/* ~i[var-name] */
int
var_insert
(
int
argc
,
char
**
argv
,
struct
send_environ
*
env
)
var_insert
(
int
argc
,
char
**
argv
,
struct
send_environ
*
send_
env
)
{
struct
mail_env_entry
*
env
;
(
void
)
env
;
(
void
)
send_
env
;
if
(
var_check_args
(
argc
,
argv
))
return
1
;
env
=
util_find_env
(
argv
[
1
],
0
);
...
...
Please
register
or
sign in
to post a comment