Merge branch 'master' of ssh://schlaile@git.misdn.org/var/git/lcr
[lcr.git] / mail.c
diff --git a/mail.c b/mail.c
index b55fc56..efe32ab 100644 (file)
--- a/mail.c
+++ b/mail.c
@@ -9,19 +9,9 @@
 **                                                                           **
 \*****************************************************************************/ 
 
-#include <stdio.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <sys/resource.h>
-#include <fcntl.h>
-#include <errno.h>
-#include <string.h>
-#include <stdlib.h>
-#include <unistd.h>
-//#include <poll.h>
 #include "main.h"
 
-static char *months[] = {
+static const char *months[] = {
        "January", "February", "March", "April", "Mai", "June", "July",
        "August", "September", "October", "November", "December"
 };
@@ -112,8 +102,7 @@ static void *mail_child(void *arg)
        fprintf(ph, "\n * date: %s %d %d %d:%02d\n\n", months[mon], mday, year+1900, hour, min);
 
        /* attach audio file */
-       if (filename[0])
-       if ((fh = open(filename, O_RDONLY)))
+       if ((filename[0]) && ((fh = open(filename, O_RDONLY))))
        {
                while(strchr(filename, '/'))
                        filename = strchr(filename, '/')+1;