diff options
author | Tatsumi Hosokawa <hosokawa@FreeBSD.org> | 1999-01-18 02:34:06 +0000 |
---|---|---|
committer | Tatsumi Hosokawa <hosokawa@FreeBSD.org> | 1999-01-18 02:34:06 +0000 |
commit | ce1bc62da3bec71895c3b04ff287c511f5bb5fb5 (patch) | |
tree | 7db6d86f61cb13dfd6ae8d0ba1114bce00d8ce0d /net/samba-devel/files/patch-ac | |
parent | The new version of texinfo in -current defaults to bailing with no (diff) |
Version up (Samba-2.0.0)
Reviewed by: Tatsumi Hosokawa <hosokawa@jp.FreeBSD.org>
Submitted by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
Notes
Notes:
svn path=/head/; revision=16123
Diffstat (limited to 'net/samba-devel/files/patch-ac')
-rw-r--r-- | net/samba-devel/files/patch-ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/samba-devel/files/patch-ac b/net/samba-devel/files/patch-ac new file mode 100644 index 000000000000..dd53b8418c1e --- /dev/null +++ b/net/samba-devel/files/patch-ac @@ -0,0 +1,20 @@ +--- lib/pidfile.c.orig Fri Jan 15 22:40:47 1999 ++++ lib/pidfile.c Fri Jan 15 22:41:05 1999 +@@ -37,7 +37,7 @@ + unsigned ret; + pstring pidFile; + +- slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name); ++ slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), name); + + fd = sys_open(pidFile, O_NONBLOCK | O_RDWR, 0644); + if (fd == -1) { +@@ -78,7 +78,7 @@ + pstring pidFile; + int pid; + +- slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_lockdir(), name); ++ slprintf(pidFile, sizeof(pidFile)-1, "%s/%s.pid", lp_piddir(), name); + + pid = pidfile_pid(name); + if (pid != 0) { |