From owner-cvs-usrsbin Thu Mar 13 06:54:01 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA00817 for cvs-usrsbin-outgoing; Thu, 13 Mar 1997 06:54:01 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA00810; Thu, 13 Mar 1997 06:53:59 -0800 (PST) Date: Thu, 13 Mar 1997 06:53:59 -0800 (PST) From: Brian Somers Message-Id: <199703131453.GAA00810@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ppp log.c log.h main.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 97/03/13 06:53:58 Modified: usr.sbin/ppp log.c log.h main.c Log: Requested by: Harlan Stenn Accept SIGHUP as a "re-open logfile" signal. As ppp doesn't set it's serial line to it's controlling terminal, we can use HUP :) This is a candidate for 2.2. The log.[ch] changes won't conflict, but the main.c changes will. We just want to change the kill(...,SIGHUP) to a SIGTERM and change the signal(SIGHUP,Hangup) to a pending_signal(SIGHUP,LogReOpen). Revision Changes Path 1.8 +26 -1 src/usr.sbin/ppp/log.c 1.9 +2 -1 src/usr.sbin/ppp/log.h 1.39 +3 -3 src/usr.sbin/ppp/main.c