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
0c8e5985
...
0c8e598549a7cb99b9665f37814b006765344c43
authored
2017-03-11 16:08:58 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor changes
1 parent
5e590896
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
mu/pop.c
mu/smtp.c
mu/pop.c
View file @
0c8e598
...
...
@@ -66,7 +66,7 @@ pop_prompt_env (void)
mu_assoc_install
(
assoc
,
"host"
,
host
);
mu_assoc_install
(
assoc
,
"status"
,
pop_session_str
(
pop_session_status
));
(
void
*
)
pop_session_str
(
pop_session_status
));
}
...
...
mu/smtp.c
View file @
0c8e598
...
...
@@ -76,11 +76,12 @@ smtp_prompt_env (void)
if
(
smtp_session_status
==
smtp_session_logged_in
&&
mu_smtp_get_param
(
smtp
,
MU_SMTP_PARAM_USERNAME
,
&
value
)
==
0
)
mu_assoc_install
(
assoc
,
"user"
,
value
);
mu_assoc_install
(
assoc
,
"user"
,
(
void
*
)
value
);
if
(
smtp_session_status
!=
smtp_session_disconnected
)
mu_assoc_install
(
assoc
,
"host"
,
host
);
mu_assoc_install
(
assoc
,
"status"
,
smtp_session_str
(
smtp_session_status
));
mu_assoc_install
(
assoc
,
"status"
,
(
void
*
)
smtp_session_str
(
smtp_session_status
));
}
static
void
...
...
Please
register
or
sign in
to post a comment