These releases are maintenance releases, and do not contain any new features or functionality, but only contain bugfixes: * Re-order library files in fchmod() configure check * faxalter: Wire up the nissing page range -Z options * man: JobReqError/JobRetryError were missing in hylafax-config.4 * typerules: adding missing comma to typeNames array * Do not warn about one of the Fontpath directories not existing * Reworked how faxsetup looks for Fontmap * Use a private Fontmap.HylaFAX file of .pfb files * Combine all Fontmap files in memory, including new Fontmap.HylaFAX * Bug 934: We need to avoid a 0-index in playList * hfaxd: Eliminte extraneous debug logging * hfaxd: Make source port for active connections be ctrl port - 1 * hfaxd: Release old accept fd * Support libtiff 4.0 * faxsend: JobRetryOther/JobRequeueOther weren't actually being used * Make sure not to cut faxq FIFO messages in two when reaching end of buffer * hfaxd: Port is network byte order, correct logging of it
13 lines
510 B
Text
13 lines
510 B
Text
$NetBSD: patch-al,v 1.7 2014/03/14 15:59:29 adam Exp $
|
|
|
|
--- faxd/Getty.c++.orig 2005-01-01 21:27:15.000000000 +0000
|
|
+++ faxd/Getty.c++
|
|
@@ -230,7 +230,7 @@ Getty::hangup()
|
|
// NB: this is executed in the parent
|
|
fxStr device = fxStr::format("%s" | line, _PATH_DEV);
|
|
Sys::chown(device, UUCPLock::getUUCPUid(), UUCPLock::getUUCPGid());
|
|
- Sys::chmod(device, 0600); // reset protection
|
|
+ Sys::chmod(device, 0660); // reset protection
|
|
}
|
|
|
|
extern void vlogError(const char* fmt, va_list ap);
|