see changelog

master
Evgeniy Kozhuhovskiy 19 years ago
parent b38c473a90
commit 89e80994af

2
debian/rules vendored

@ -28,7 +28,7 @@ configure-stamp:
# cat $(CURDIR)/source/Makefile.in | sed 's/\(^INSTALL_.*\)-o \$${OWNER} -g \$${GROUP}/\1/' > \
# $(CURDIR)/source/Makefile.in.new
# mv $(CURDIR)/source/Makefile.in.new $(CURDIR)/source/Makefile.in
cd source; ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc/bforce -with-user=$(USER) --with-group=$(GROUP) --disable-syslog --disable-log-passwd
cd source; ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc/bforce -with-user=$(USER) --with-group=$(GROUP) --disable-log-passwd
touch configure-stamp

@ -1,3 +1,7 @@
2006-02-05 Evgeniy Kozhuhovskiy <e.kozhuhovskiy@gmail.com>
* bforce/logger.c: trying to fix broken syslog.
2006-01-04 Evgeniy Kozhuhovskiy <e.kozhuhovskiy@gmail.com>
* bforce/daemon_call.c (daemon_call_branch): if phone ==

@ -93,7 +93,8 @@ static int daemon_call_branch(s_sysentry *syst, const char *lockdir, s_modemport
setproctitle("bforce calling %s, %s",
ftn_addrstr(abuf, state.node.addr), state.node.phone);
if( ( syst->tcpip ) || (strcmp(state.node.phone,NO_PSTN_PHONE)) )
/* if( ( syst->tcpip ) || (strcmp(state.node.phone,NO_PSTN_PHONE)== 0) ) */
if( syst->tcpip )
{
rc = call_system_tcpip();
}

@ -292,7 +292,7 @@ int logerr(const char *s, ...)
const char *log_getfilename(int whatfor)
{
const char *p = NULL;
const char *p = "/dev/null";
return p;
}

Loading…
Cancel
Save