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
88c5a208
...
88c5a20868d571bc4c0f37ffc5fd20ead5c2e7eb
authored
2002-06-27 09:17:31 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mda_init,mda_next): use mu_expand_path_pattern.
1 parent
e1317081
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mail.local/script.c
mail.local/script.c
View file @
88c5a20
...
...
@@ -66,7 +66,7 @@ int
mda_init
(
void
*
data
)
{
struct
mda_data
*
md
=
data
;
md
->
progfile
=
m
ake_progfile_name
(
md
->
progfile_pattern
,
md
->
argv
[
0
]);
md
->
progfile
=
m
u_expand_path_pattern
(
md
->
progfile_pattern
,
md
->
argv
[
0
]);
return
0
;
}
...
...
@@ -159,7 +159,7 @@ mda_next (void *data, mailbox_t mbox)
return
0
;
if
(
md
->
progfile
)
free
(
md
->
progfile
);
md
->
progfile
=
m
ake_progfile_name
(
md
->
progfile_pattern
,
*
md
->
argv
);
md
->
progfile
=
m
u_expand_path_pattern
(
md
->
progfile_pattern
,
*
md
->
argv
);
mailbox_get_message
(
mbox
,
1
,
&
mesg
);
message_get_attribute
(
mesg
,
&
attr
);
...
...
Please
register
or
sign in
to post a comment