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
0dd8fa2f
...
0dd8fa2ff2b4e7e0e8349449f242850077926e50
authored
2002-07-16 10:26:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_copy0): Use mail_expand_name().
1 parent
17748d65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
mail/copy.c
mail/copy.c
View file @
0dd8fa2
...
...
@@ -41,10 +41,13 @@ mail_copy0 (int argc, char **argv, int mark)
if
(
isupper
(
argv
[
0
][
0
]))
sender
=
1
;
else
if
(
argc
>=
2
)
filename
=
strdup
(
argv
[
--
argc
]);
filename
=
mail_expand_name
(
argv
[
--
argc
]);
else
filename
=
strdup
(
"mbox"
);
filename
=
strdup
(
"mbox"
);
if
(
!
filename
)
return
1
;
if
(
msgset_parse
(
argc
,
argv
,
&
msglist
))
{
if
(
filename
)
...
...
Please
register
or
sign in
to post a comment