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
88e23c91
...
88e23c91df278f9ff0494dad6ce63d775a7e89a4
authored
2002-09-18 21:20:29 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated mh_open_folder invocations.
1 parent
34c6537f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
mh/rmm.c
mh/scan.c
mh/rmm.c
View file @
88e23c9
...
...
@@ -58,7 +58,6 @@ rmm (mailbox_t mbox, message_t msg, size_t num, void *data)
attribute_t
attr
;
message_get_attribute
(
msg
,
&
attr
);
attribute_set_deleted
(
attr
);
return
0
;
}
int
...
...
@@ -72,7 +71,7 @@ main (int argc, char **argv)
mh_argp_parse
(
argc
,
argv
,
options
,
mh_option
,
args_doc
,
doc
,
opt_handler
,
NULL
,
&
index
);
mbox
=
mh_open_folder
(
current_folder
);
mbox
=
mh_open_folder
(
current_folder
,
0
);
mh_msgset_parse
(
mbox
,
&
msgset
,
argc
-
index
,
argv
+
index
);
...
...
mh/scan.c
View file @
88e23c9
...
...
@@ -137,7 +137,7 @@ main (int argc, char **argv)
exit
(
1
);
}
return
scan
(
mh_open_folder
(
current_folder
));
return
scan
(
mh_open_folder
(
current_folder
,
0
));
}
#ifdef HAVE_TERMCAP_H
...
...
Please
register
or
sign in
to post a comment