]> code.citadel.org Git - citadel.git/blobdiff - citadel/ipc_c_tcp.c
* Changed the comments at the beginning of each file to a consistent format
[citadel.git] / citadel / ipc_c_tcp.c
index c97892a3a0757f7d3ebde368b72fa52bddea78e3..2151c15900234153471d4c7757e18ec5d40ae321 100644 (file)
@@ -1,9 +1,7 @@
 /*
- * ipc_c_tcp.c
+ * $Id$
  * 
- * Citadel/UX client/server IPC - client module using TCP/IP
- *
- * version 1.3 $Id$
+ * Client-side IPC functions
  *
  */
 
@@ -131,6 +129,7 @@ int uds_connectsock(char *sockpath)
        struct sockaddr_un addr;
        int s;
 
+
        memset(&addr, 0, sizeof(addr));
        addr.sun_family = AF_UNIX;
        strncpy(addr.sun_path, sockpath, sizeof addr.sun_path);