aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-11-19 22:45:06 +0000
committerRoger Dingledine <arma@torproject.org>2003-11-19 22:45:06 +0000
commitd6601f8cff2d95376ea79394dd7373564c754835 (patch)
treee11f374aa82e57cba3a380023dad0270f0a38032 /src/or/main.c
parent4565150db252ffb2e689cc290ab532ec3cac511c (diff)
downloadtor-d6601f8cff2d95376ea79394dd7373564c754835.tar
tor-d6601f8cff2d95376ea79394dd7373564c754835.tar.gz
make pidfile default to null rather than writing to your cwd
svn:r853
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/or/main.c b/src/or/main.c
index a19079ddf..52242653f 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -628,8 +628,8 @@ static int init_from_config(int argc, char **argv) {
}
/* write our pid to the pid file, if we do not have write permissions we will log a warning */
- write_pidfile(options.PidFile);
- /* XXX Is overwriting the pidfile ok? I think it is. -RD */
+ if(options.PidFile)
+ write_pidfile(options.PidFile);
return 0;
}
@@ -750,7 +750,8 @@ static void catch(int the_signal) {
log(LOG_ERR,"Catching signal %d, exiting cleanly.", the_signal);
/* we don't care if there was an error when we unlink, nothing
we could do about it anyways */
- unlink(options.PidFile);
+ if(options.PidFile)
+ unlink(options.PidFile);
exit(0);
case SIGHUP:
please_reset = 1;