]> code.citadel.org Git - citadel.git/commitdiff
* Put lockfile in /tmp instead of in /var/lock. The latter is not guaranteed
authorArt Cancro <ajc@citadel.org>
Mon, 15 Nov 1999 03:17:40 +0000 (03:17 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 15 Nov 1999 03:17:40 +0000 (03:17 +0000)
  to exist, nor is it guaranteed to be writable by BBSUID
  (Resolves bug #11 from the Bugzilla repository)

citadel/ChangeLog
citadel/netproc.c

index 7799575bd4d0e5b65e4062538d286f3c85881e17..9d95ab7db1ff945c873e492c38a980370506838c 100644 (file)
@@ -1,4 +1,9 @@
 $Log$
+Revision 1.415  1999/11/15 03:17:39  ajc
+* Put lockfile in /tmp instead of in /var/lock.   The latter is not guaranteed
+  to exist, nor is it guaranteed to be writable by BBSUID
+  (Resolves bug #11 from the Bugzilla repository)
+
 Revision 1.414  1999/11/15 03:07:24  ajc
 * Fixed the network-wide vCard purge logic so that it (1) actually works,
   and (2) forces a netproc run immediately when a purge is entered
@@ -1434,4 +1439,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Initial CVS import 
-
index 4f87696922c327ceb198273e73c07508f0dcc84f..48ea0c01ae7670a231de3b72b7ec238bb2e136c0 100644 (file)
@@ -11,7 +11,7 @@
 #define USE_TIME       (604800L)
 
 /* Where do we keep our lock file? */
-#define LOCKFILE       "/var/lock/LCK.netproc"
+#define LOCKFILE       "/tmp/netproc.LCK"
 
 /* Path to the 'uudecode' utility (needed for network file transfers) */
 #define UUDECODE       "/usr/bin/uudecode"