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
a3ae1794
...
a3ae17943e01ed30c4f1c097c6fc067e53b1886a
authored
2006-07-22 08:18:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor formatting changes
1 parent
83a79cb5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
libproto/mbox/folder.c
mail/mail.c
libproto/mbox/folder.c
View file @
a3ae179
...
...
@@ -71,7 +71,8 @@ _path_is_scheme (mu_record_t record, const char *url, int flags)
if
(
url
&&
record
->
scheme
)
{
if
(
mu_scheme_autodetect_p
(
url
,
&
path
))
/* implies if (strncmp (record->scheme, url, strlen(record->scheme)) == 0)*/
/* implies:
if (strncmp (record->scheme, url, strlen(record->scheme)) == 0) */
{
struct
stat
st
;
...
...
mail/mail.c
View file @
a3ae179
...
...
@@ -185,7 +185,7 @@ static const char *mail_capa[] = {
};
static
char
*
mail_cmdline
(
void
*
closure
,
int
cont
ARG_UNUSED
)
mail_cmdline
(
void
*
closure
,
int
cont
ARG_UNUSED
)
{
char
*
prompt
=
(
char
*
)
closure
;
char
*
rc
;
...
...
@@ -201,8 +201,8 @@ mail_cmdline(void *closure, int cont ARG_UNUSED)
}
rc
=
ml_readline
(
prompt
);
if
(
ml_got_interrupt
())
if
(
ml_got_interrupt
())
{
util_error
(
_
(
"Interrupt"
));
continue
;
...
...
Please
register
or
sign in
to post a comment