masqmail

diff src/fail_msg.c @ 366:41958685480d

Switched to `type *name' style Andrew Koenig's ``C Traps and Pitfalls'' (Ch.2.1) convinced me that it is best to go with the way C had been designed. The ``declaration reflects use'' concept conflicts with a ``type* name'' notation. Hence I switched.
author markus schnalke <meillo@marmaro.de>
date Thu, 22 Sep 2011 15:07:40 +0200
parents fc1c6425c024
children b27f66555ba8
line diff
     1.1 --- a/src/fail_msg.c	Wed Sep 14 12:20:40 2011 +0200
     1.2 +++ b/src/fail_msg.c	Thu Sep 22 15:07:40 2011 +0200
     1.3 @@ -23,7 +23,7 @@
     1.4  #include "readsock.h"
     1.5  
     1.6  gboolean
     1.7 -fail_msg(message * msg, gchar * template, GList * failed_rcpts, gchar * err_fmt, va_list args)
     1.8 +fail_msg(message *msg, gchar *template, GList *failed_rcpts, gchar *err_fmt, va_list args)
     1.9  {
    1.10  	gboolean ok = FALSE;
    1.11  	address *ret_path = NULL;
    1.12 @@ -130,7 +130,7 @@
    1.13  */
    1.14  
    1.15  static gboolean
    1.16 -warn_msg_is_due(message * msg)
    1.17 +warn_msg_is_due(message *msg)
    1.18  {
    1.19  	time_t now = time(NULL);
    1.20  
    1.21 @@ -155,7 +155,7 @@
    1.22  }
    1.23  
    1.24  gboolean
    1.25 -warn_msg(message * msg, gchar * template, GList * defered_rcpts, gchar * err_fmt, va_list args)
    1.26 +warn_msg(message *msg, gchar *template, GList *defered_rcpts, gchar *err_fmt, va_list args)
    1.27  {
    1.28  	time_t now = time(NULL);
    1.29