[gmime: 2/12] minor code cleanup
- From: Jeffrey Stedfast <fejj src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gmime: 2/12] minor code cleanup
- Date: Fri, 7 Apr 2017 00:41:02 +0000 (UTC)
commit bf64e96447c243449d127ed7dc4fe6d9c7546f5f
Author: Jeffrey Stedfast <jestedfa microsoft com>
Date: Wed Apr 5 21:34:58 2017 -0400
minor code cleanup
examples/basic-example.c | 16 +++++++---------
1 files changed, 7 insertions(+), 9 deletions(-)
---
diff --git a/examples/basic-example.c b/examples/basic-example.c
index 627bfa4..cdfc91a 100644
--- a/examples/basic-example.c
+++ b/examples/basic-example.c
@@ -35,7 +35,6 @@
#include <errno.h>
#ifndef G_OS_WIN32
-static const char *path = "/usr/bin/gpg";
static const char *passphrase = "no.secret";
static gboolean
@@ -186,7 +185,6 @@ verify_signed_parts (GMimeMessage *message)
static void
write_message_to_screen (GMimeMessage *message)
{
- GMimeFormatOptions *format = g_mime_format_options_get_default ();
GMimeStream *stream;
/* create a new stream for writing to stdout */
@@ -194,7 +192,7 @@ write_message_to_screen (GMimeMessage *message)
g_mime_stream_file_set_owner ((GMimeStreamFile *) stream, FALSE);
/* write the message to the stream */
- g_mime_object_write_to_stream ((GMimeObject *) message, format, stream);
+ g_mime_object_write_to_stream ((GMimeObject *) message, NULL, stream);
/* flush the stream (kinda like fflush() in libc's stdio) */
g_mime_stream_flush (stream);
@@ -272,11 +270,11 @@ int main (int argc, char **argv)
if (argc < 2) {
printf ("Usage: a.out <message file>\n");
return 0;
- } else {
- if ((fd = open (argv[1], O_RDONLY, 0)) == -1) {
- fprintf (stderr, "Cannot open message `%s': %s\n", argv[1], g_strerror (errno));
- return 0;
- }
+ }
+
+ if ((fd = open (argv[1], O_RDONLY, 0)) == -1) {
+ fprintf (stderr, "Cannot open message `%s': %s\n", argv[1], g_strerror (errno));
+ return 0;
}
/* init the gmime library */
@@ -285,7 +283,7 @@ int main (int argc, char **argv)
/* parse the message */
message = parse_message (fd);
if (message == NULL) {
- printf("Error parsing message");
+ printf ("Error parsing message\n");
return 1;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]