summaryrefslogtreecommitdiff
path: root/games/wolfpack/files/patch-ad
blob: c906a66512e7ad020fa71f7b16accf4b9730c347 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
--- src/doconfig/doconfig.c.orig	Thu Jun 19 03:24:48 2003
+++ src/doconfig/doconfig.c	Wed Oct 22 16:02:33 2003
@@ -90,12 +90,18 @@
 #endif
 
 int
-main()
+main(int argc, char **argv)
 {
     char buf[256];
     char *cp;
 	char *pathname;
 
+    if (argc != 2) {
+               printf("Bad usage");
+               exit(-1);
+    }
+
+
     if ((pathname = getcwd(NULL, 255)) == NULL) {
 		printf("Can't get current path!\n");
 		exit(-1);
@@ -112,30 +118,16 @@
     cp = (char *)rindex(pathname, '\\');
     *cp = '\0';
 #endif
+    if (!strcasecmp(argv[1], "config")) {
     printf("Configuring...\n");
     wrmakesrc(pathname);
     sprintf(buf, "%s/include/gamesdef.h", pathname);
     wrgamesdef(buf);
     sprintf(buf, "%s/src/client/ipglob.c", pathname);
     wripglob(buf);
-
-    if (access(EP, 0)) {
-		printf("making directory %s\n", EP);
-		if (mkdir(EP, 493)) {
-			printf("mkdir failed on %s, exiting.\n", EP);
-			exit(-1);
-		}
-    }
-    sprintf(buf, "%s/data", EP);
-    if (access(buf, 0)) {
-		printf("making directory %s\n", buf);
-		if (mkdir(buf, 493)) {
-			printf("mkdir failed on %s, exiting.\n", buf);
-			exit(-1);
-		}
-    }
-    sprintf(buf, "%s/data/auth", EP);
+    sprintf(buf, "%s/data/auth", pathname);
     wrauth(buf);
+    }
     exit(0);
 }