aboutsummaryrefslogtreecommitdiff
path: root/camp
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-10-20 12:38:04 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-10-20 12:38:04 +0000
commitb405b69edbd73847db0351833a162721399377df (patch)
tree6f499aed95650b3ab8d9ac0b91cbe2be73e45798 /camp
parent7bbe55b72bff24a5ee3e80f4455324f072eeae78 (diff)
downloadslackbuilds-b405b69edbd73847db0351833a162721399377df.tar.gz
slackbuilds-b405b69edbd73847db0351833a162721399377df.tar.bz2
camp: added patch
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@469 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'camp')
-rw-r--r--camp/camp-1.5.3455.diff64
1 files changed, 64 insertions, 0 deletions
diff --git a/camp/camp-1.5.3455.diff b/camp/camp-1.5.3455.diff
new file mode 100644
index 00000000..be4e4dfa
--- /dev/null
+++ b/camp/camp-1.5.3455.diff
@@ -0,0 +1,64 @@
+diff -Naur camp-1.5.3455.orig/fork.c camp-1.5.3455/fork.c
+--- camp-1.5.3455.orig/fork.c 2002-03-19 19:36:04.000000000 -0300
++++ camp-1.5.3455/fork.c 2006-10-20 10:36:23.000000000 -0200
+@@ -86,7 +86,7 @@
+
+ default:
+ quitmode = 1;
+- exit();
++ exit(0);
+
+ }
+ }
+@@ -111,7 +111,7 @@
+
+ if ( quitmode == 0 ) quitmode = 3; else
+ quitmode = 2;
+- exit();
++ exit(0);
+
+ }
+
+@@ -127,7 +127,7 @@
+ fd = fopen(PID_FILE, "r");
+ if ( !fd ) {
+ printf("No session to steal!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -174,7 +174,7 @@
+ fd = fopen(buf, "r");
+ if ( !fd ) {
+ printf("No data found, can't steal!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n%d\n%d\n", &slavepid, &filenumber, &currentfile.frame);
+ fclose(fd);
+@@ -210,7 +210,7 @@
+ fd = fopen(PID_FILE, "r");
+ if ( !fd ) {
+ printf("No session to kill!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -222,7 +222,7 @@
+ fd = fopen(buf, "r");
+ if ( !fd ) {
+ printf("No session to kill!\n");
+- exit();
++ exit(0);
+ }
+ fscanf(fd, "%d\n", &oldpid);
+ fclose(fd);
+@@ -235,5 +235,5 @@
+ sprintf(buf, "%s/time.camp", TMP_DIR);
+ unlink(buf);
+ printf("done!\n");
+- exit();
++ exit(0);
+ }