summaryrefslogtreecommitdiff
path: root/source4/smbd/pidfile.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-10-01 22:13:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:07:38 -0500
commitefa384375f61049d7e7c43a77dc8abe0e034e04d (patch)
tree9640f28b0ecc1e7e9a309254fcce6ed2b1950a2f /source4/smbd/pidfile.c
parent621fcfcd1c8dc4ccbe8f3d58d988b9ce40b3fad3 (diff)
downloadsamba-efa384375f61049d7e7c43a77dc8abe0e034e04d.tar.gz
samba-efa384375f61049d7e7c43a77dc8abe0e034e04d.tar.bz2
samba-efa384375f61049d7e7c43a77dc8abe0e034e04d.zip
r25454: Use standard bool types in a couple more places.
(This used to be commit 9243b551f30c7aa2763115516a6adcfe5bbddc58)
Diffstat (limited to 'source4/smbd/pidfile.c')
-rw-r--r--source4/smbd/pidfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/pidfile.c b/source4/smbd/pidfile.c
index 9a8b095f15..4847ddd7b5 100644
--- a/source4/smbd/pidfile.c
+++ b/source4/smbd/pidfile.c
@@ -103,7 +103,7 @@ void pidfile_create(const char *name)
exit(1);
}
- if (fcntl_lock(fd,F_SETLK,0,1,F_WRLCK)==False) {
+ if (fcntl_lock(fd,F_SETLK,0,1,F_WRLCK)==false) {
DEBUG(0,("ERROR: %s : fcntl lock of file %s failed. Error was %s\n",
name, pidFile, strerror(errno)));
exit(1);