blob: 11d37cde781a1385e51a3ea5e648cdf4d62b3000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- hfaxd/Makefile.in.orig Sat Apr 14 18:47:02 2001
+++ hfaxd/Makefile.in Sat Apr 14 18:47:42 2001
@@ -96,7 +96,7 @@
incdepend:
install: default
- ${INSTALL} -F ${LIBEXEC} -u root -m 4755 \
+ ${INSTALL} -F ${LIBEXEC} -u root -m 755 \
-idb ${PRODUCT}.sw.server -O hfaxd
${INSTALL} -F ${LIBDATA} -m 644 -idb ${PRODUCT}.sw.server \
-idb "config(noupdate)" -src ${SRCDIR}/hfaxd.conf -O hfaxd.conf
--- hfaxd/main.c++.orig Sat Apr 14 18:55:07 2001
+++ hfaxd/main.c++ Sat Apr 14 18:53:04 2001
@@ -237,7 +237,7 @@
if (detach == -1) // no protocol options means -I
detach = false;
if (Sys::chdir(queueDir) < 0)
- fatal(queueDir | ": Can not change directory");
+ fatal("Can not change directory to %s", (const char*)queueDir);
CheckSpoolingSetup();
if (detach)
detachFromTTY();
|