Date: Wednesday October 10, 2001 @ 2:36
Author: cameron
Update of /home/netrek/cvsroot/Vanilla/ntserv
In directory swashbuckler:/var/tmp/cvs-serv31961/ntserv
Modified Files:
coup.c detonate.c enter.c getname.c getship.c orbit.c plasma.c
socket.c
Log Message:
PROJECTS update. release procedure update, struct.h documentation, remove
ipc.h from some source files, fix some perror calls, fix xsg/redraw time.h
****************************************
Index: Vanilla/ntserv/coup.c
diff -u Vanilla/ntserv/coup.c:1.2 Vanilla/ntserv/coup.c:1.3
--- Vanilla/ntserv/coup.c:1.2 Fri Apr 30 15:18:41 1999
+++ Vanilla/ntserv/coup.c Wed Oct 10 02:36:52 2001
@@ -5,7 +5,6 @@
#include <stdio.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include "defs.h"
#include "struct.h"
#include "data.h"
Index: Vanilla/ntserv/detonate.c
diff -u Vanilla/ntserv/detonate.c:1.3 Vanilla/ntserv/detonate.c:1.4
--- Vanilla/ntserv/detonate.c:1.3 Sun Jul 11 23:41:11 1999
+++ Vanilla/ntserv/detonate.c Wed Oct 10 02:36:52 2001
@@ -5,7 +5,6 @@
#include <stdio.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include "defs.h"
#include "struct.h"
#include "data.h"
Index: Vanilla/ntserv/enter.c
diff -u Vanilla/ntserv/enter.c:1.10 Vanilla/ntserv/enter.c:1.11
--- Vanilla/ntserv/enter.c:1.10 Fri Feb 2 03:17:52 2001
+++ Vanilla/ntserv/enter.c Wed Oct 10 02:36:52 2001
@@ -7,7 +7,6 @@
#include <math.h>
#include <stdlib.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include <errno.h>
#include <pwd.h>
#include <ctype.h>
Index: Vanilla/ntserv/getname.c
diff -u Vanilla/ntserv/getname.c:1.10 Vanilla/ntserv/getname.c:1.11
--- Vanilla/ntserv/getname.c:1.10 Thu Oct 26 05:06:14 2000
+++ Vanilla/ntserv/getname.c Wed Oct 10 02:36:52 2001
@@ -13,7 +13,6 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/file.h>
-#include <sys/ipc.h>
#include <sys/time.h>
#include <errno.h>
#include <pwd.h>
Index: Vanilla/ntserv/getship.c
diff -u Vanilla/ntserv/getship.c:1.2 Vanilla/ntserv/getship.c:1.3
--- Vanilla/ntserv/getship.c:1.2 Fri Apr 30 15:18:44 1999
+++ Vanilla/ntserv/getship.c Wed Oct 10 02:36:52 2001
@@ -5,7 +5,6 @@
#include <stdio.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include <sys/time.h>
#include "defs.h"
#include "struct.h"
Index: Vanilla/ntserv/orbit.c
diff -u Vanilla/ntserv/orbit.c:1.7 Vanilla/ntserv/orbit.c:1.8
--- Vanilla/ntserv/orbit.c:1.7 Fri Feb 2 03:17:53 2001
+++ Vanilla/ntserv/orbit.c Wed Oct 10 02:36:52 2001
@@ -6,7 +6,6 @@
#include <stdio.h>
#include <math.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include "defs.h"
#include "struct.h"
#include "data.h"
Index: Vanilla/ntserv/plasma.c
diff -u Vanilla/ntserv/plasma.c:1.3 Vanilla/ntserv/plasma.c:1.4
--- Vanilla/ntserv/plasma.c:1.3 Sun Feb 20 19:40:20 2000
+++ Vanilla/ntserv/plasma.c Wed Oct 10 02:36:52 2001
@@ -4,7 +4,6 @@
#include <stdio.h>
#include <sys/types.h>
-#include <sys/ipc.h>
#include "defs.h"
#include "struct.h"
#include "data.h"
Index: Vanilla/ntserv/socket.c
diff -u Vanilla/ntserv/socket.c:1.30 Vanilla/ntserv/socket.c:1.31
--- Vanilla/ntserv/socket.c:1.30 Fri Apr 27 20:37:25 2001
+++ Vanilla/ntserv/socket.c Wed Oct 10 02:36:52 2001
@@ -1,4 +1,4 @@
-/* $Id: socket.c,v 1.30 2001/04/28 01:37:25 cameron Exp $
+/* $Id: socket.c,v 1.31 2001/10/10 07:36:52 cameron Exp $
*/
/*
@@ -1686,7 +1686,7 @@
}
else if (errno==EINTR) {
/* We got interrupted... Let's try it again. */
- perror("gwrite:");
+ perror("gwrite");
errno = (-1);
n = 0;
}
@@ -1696,7 +1696,7 @@
return (-1);
}
else {
- perror("gwrite:");
+ perror("gwrite");
return (-1);
}
if (fd == udpSock) {