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
feaa576c
...
feaa576c03ce80342a81dc9d136994109ccb3e9c
authored
2003-02-03 11:31:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added missing typecasts.
1 parent
093f307c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
7 deletions
libmu_scm/mu_body.c
libmu_scm/mu_mailbox.c
libmu_scm/mu_message.c
libmu_scm/mu_mime.c
libmu_scm/mu_scm.c
libmu_scm/mu_body.c
View file @
feaa576
...
...
@@ -79,7 +79,7 @@ mu_scm_body_print (SCM body_smob, SCM port, scm_print_state * pstate)
int
mu_scm_is_body
(
SCM
scm
)
{
return
SCM_NIMP
(
scm
)
&&
SCM_CAR
(
scm
)
==
body_tag
;
return
SCM_NIMP
(
scm
)
&&
(
long
)
SCM_CAR
(
scm
)
==
body_tag
;
}
SCM
...
...
libmu_scm/mu_mailbox.c
View file @
feaa576
...
...
@@ -98,7 +98,7 @@ mu_scm_mailbox_create (mailbox_t mbox)
int
mu_scm_is_mailbox
(
SCM
scm
)
{
return
SCM_NIMP
(
scm
)
&&
SCM_CAR
(
scm
)
==
mailbox_tag
;
return
SCM_NIMP
(
scm
)
&&
(
long
)
SCM_CAR
(
scm
)
==
mailbox_tag
;
}
/* ************************************************************************* */
...
...
libmu_scm/mu_message.c
View file @
feaa576
...
...
@@ -167,7 +167,7 @@ mu_scm_message_get (SCM MESG)
int
mu_scm_is_message
(
SCM
scm
)
{
return
SCM_NIMP
(
scm
)
&&
SCM_CAR
(
scm
)
==
message_tag
;
return
SCM_NIMP
(
scm
)
&&
(
long
)
SCM_CAR
(
scm
)
==
message_tag
;
}
/* ************************************************************************* */
...
...
libmu_scm/mu_mime.c
View file @
feaa576
...
...
@@ -81,7 +81,7 @@ mu_scm_mime_get (SCM MIME)
int
mu_scm_is_mime
(
SCM
scm
)
{
return
SCM_NIMP
(
scm
)
&&
SCM_CAR
(
scm
)
==
mime_tag
;
return
SCM_NIMP
(
scm
)
&&
(
long
)
SCM_CAR
(
scm
)
==
mime_tag
;
}
/* ************************************************************************* */
...
...
libmu_scm/mu_scm.c
View file @
feaa576
...
...
@@ -164,12 +164,10 @@ static struct
void
mu_scm_init
()
{
char
*
defmailer
;
int
i
;
list_t
lst
;
asprintf
(
&
defmailer
,
"sendmail:%s"
,
_PATH_SENDMAIL
);
_mu_scm_mailer
=
scm_makfrom0str
(
defmailer
);
_mu_scm_mailer
=
scm_makfrom0str
(
"sendmail:"
_PATH_SENDMAIL
);
mu_set_variable
(
"mu-mailer"
,
_mu_scm_mailer
);
_mu_scm_debug
=
scm_makenum
(
0
);
...
...
Please
register
or
sign in
to post a comment