masqmail

diff src/online.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 f10a56dc7481
children b27f66555ba8
line diff
     1.1 --- a/src/online.c	Wed Sep 14 12:20:40 2011 +0200
     1.2 +++ b/src/online.c	Thu Sep 22 15:07:40 2011 +0200
     1.3 @@ -26,7 +26,7 @@
     1.4  gchar*
     1.5  online_query()
     1.6  {
     1.7 -	gchar* pipe = conf.online_query;
     1.8 +	gchar *pipe = conf.online_query;
     1.9  	pid_t pid;
    1.10  	void (*old_signal) (int);
    1.11  	int status;