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
32cdeb0d
...
32cdeb0d3221429feb65653723ea98c13503f585
authored
2003-02-22 22:27:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed expanding of the draftfile name
1 parent
6760ea1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/refile.c
mh/refile.c
View file @
32cdeb0
...
...
@@ -155,7 +155,7 @@ opt_handler (int key, char *arg, void *unused, struct argp_state *state)
break
;
case
ARG_DRAFT
:
source_file
=
mh_expand_name
(
NULL
,
"draft"
,
0
)
;
source_file
=
"draft"
;
break
;
case
ARG_LINK
:
...
...
@@ -251,7 +251,7 @@ main (int argc, char **argv)
mh_error
(
_
(
"both message set and source file given"
));
exit
(
1
);
}
msg
=
mh_file_to_message
(
NULL
,
source_file
);
msg
=
mh_file_to_message
(
mu_path_folder_dir
,
source_file
);
refile
(
msg
);
if
(
!
link_flag
)
unlink
(
source_file
);
...
...
Please
register
or
sign in
to post a comment