diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-11-21 21:52:03 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-11-21 21:52:03 +0000 |
commit | 48df7d401ce888bd04674749abe79a61326caed0 (patch) | |
tree | a5dccd3673c719acf48dee55ffbbb6dd05e6052b | |
parent | 820832a647cbe62ca4b473bd1a4ee33f7a2664df (diff) | |
download | tinyproxy-48df7d401ce888bd04674749abe79a61326caed0.tar.gz tinyproxy-48df7d401ce888bd04674749abe79a61326caed0.zip |
# Changed the return type for pidfile_create() to int from void.
Diffstat (limited to '')
-rw-r--r-- | src/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h index 9213bd0..e208a6f 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,4 +1,4 @@ -/* $Id: utils.h,v 1.20 2002-06-15 17:28:19 rjkaes Exp $ +/* $Id: utils.h,v 1.21 2002-11-21 21:52:03 rjkaes Exp $ * * See 'utils.h' for a detailed description. * @@ -29,7 +29,7 @@ extern int send_http_message(struct conn_s *connptr, int http_code, extern int send_http_error_message(struct conn_s *connptr); extern int indicate_http_error(struct conn_s* connptr, int number, const char *string); -extern void pidfile_create(const char *path); +extern int pidfile_create(const char *path); extern int create_file_safely(const char *filename, bool_t truncate_file); #endif |