summaryrefslogtreecommitdiff
path: root/smtp.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2003-07-03 18:25:53 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2003-07-03 18:25:53 +0000
commit15ff73b9843c79c1709f4a521aaa09285105f8bc (patch)
tree207ebddf035d06172746ef77695f4c3de64f357f /smtp.h
parent2867d16bc9bae9764904efbf44cd5131fca1bc9b (diff)
Exit with an error code immediately whenever an error.
Extensive use of xmalloc and friends.
Diffstat (limited to 'smtp.h')
-rw-r--r--smtp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtp.h b/smtp.h
index da18bc6..233c078 100644
--- a/smtp.h
+++ b/smtp.h
@@ -45,7 +45,7 @@ void identity_add(identity_t *identity);
identity_t *identity_lookup(const char *address);
/** Initialize the identities resources */
-int identities_init(void);
+void identities_init(void);
/** Cleanup the resources associated with the identities */
void identities_cleanup(void);
@@ -54,6 +54,6 @@ void identities_cleanup(void);
/** Send a message via a SMTP server */
-int smtp_send(message_t *msg);
+void smtp_send(message_t *msg);
#endif