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
dec5a272
...
dec5a27234c9ff2b1f4950438a39cb094db01ff6
authored
2006-06-27 13:09:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
All functions, except display_stream_mailcap, are static.
1 parent
cb471b86
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
lib/mailcap.c
lib/mailcap.c
View file @
dec5a27
...
...
@@ -142,13 +142,13 @@ mime_context_do_not_ask (struct mime_context *ctx)
return
rc
;
}
int
static
int
dry_run_p
(
struct
mime_context
*
ctx
)
{
return
ctx
->
flags
&
FLAGS_DRY_RUN
;
}
int
static
int
interactive_p
(
struct
mime_context
*
ctx
)
{
return
ctx
->
flags
&
FLAGS_INTERACTIVE
;
...
...
@@ -175,7 +175,8 @@ mime_context_get_content_type_value (struct mime_context *ctx,
int
rc
=
1
;
mu_list_get_iterator
(
ctx
->
values
,
&
itr
);
for
(
mu_iterator_first
(
itr
);
!
mu_iterator_is_done
(
itr
);
mu_iterator_next
(
itr
))
for
(
mu_iterator_first
(
itr
);
!
mu_iterator_is_done
(
itr
);
mu_iterator_next
(
itr
))
{
char
*
item
,
*
p
;
...
...
@@ -507,7 +508,7 @@ run_test (mu_mailcap_entry_t entry, struct mime_context *ctx)
return
status
;
}
int
static
int
run_mailcap
(
mu_mailcap_entry_t
entry
,
struct
mime_context
*
ctx
)
{
char
*
view_command
;
...
...
Please
register
or
sign in
to post a comment