summaryrefslogtreecommitdiff
path: root/source3/lib/pidfile.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-01-22 00:35:51 +0000
committerTim Potter <tpot@samba.org>2002-01-22 00:35:51 +0000
commita45dbdd722132d4a21da7817041601db073ac0bc (patch)
treef6bc9e393eac972fe98d2bb15c919d44cc1d0357 /source3/lib/pidfile.c
parent48c487719424af2fe390d39ec2c7bf42999ffe2b (diff)
downloadsamba-a45dbdd722132d4a21da7817041601db073ac0bc.tar.gz
samba-a45dbdd722132d4a21da7817041601db073ac0bc.tar.bz2
samba-a45dbdd722132d4a21da7817041601db073ac0bc.zip
Added comment about running lp_load() before calling pidfile_create().
(This used to be commit e05c9b34f084874fef3d9e6f39484242ed541940)
Diffstat (limited to 'source3/lib/pidfile.c')
-rw-r--r--source3/lib/pidfile.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/lib/pidfile.c b/source3/lib/pidfile.c
index a9b2da0d7f..fad5691e0a 100644
--- a/source3/lib/pidfile.c
+++ b/source3/lib/pidfile.c
@@ -69,7 +69,10 @@ pid_t pidfile_pid(char *name)
return 0;
}
-/* create a pid file in the lock directory. open it and leave it locked */
+/* Create a pid file in the lock directory. open it and leave it locked.
+ This must be done after a call to lp_load() as it uses the lp_lockdir()
+ function to generate the path to the pidfile. */
+
void pidfile_create(char *name)
{
int fd;