]> code.citadel.org Git - citadel.git/blobdiff - textclient/ipc_c_tcp.c
Remove preprocessor tests for OpenSSL. It's a requirement.
[citadel.git] / textclient / ipc_c_tcp.c
index b24a130b823cdc592c0f7caef25a09c1f1954f5c..9124cf943785c7f7621aaf6d23956370d7e37f8c 100644 (file)
@@ -2,14 +2,7 @@
 //
 // Copyright (c) 1987-2018 by the citadel.org team
 //
-// This program is open source software.  Use, duplication, and/or
-// disclosure are subject to the GNU General Purpose License version 3.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-
+// This program is open source software.  Use, duplication, or disclosure is subject to the GNU General Public License version 3.
 
 #include "textclient.h"
 
@@ -17,7 +10,7 @@
 /* Note that some of these functions may not work with multiple instances. */
 
 static void (*deathHook)(void) = NULL;
-int (*error_printf)(char *s, ...) =(int(*)(char *, ...)) printf;
+int (*error_printf)(char *s, ...) = (int (*)(char *, ...)) printf;
 
 void setIPCDeathHook(void (*hook)(void)) {
        deathHook = hook;