aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/bundle.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-04-18 23:17:26 +0000
committerBrian Somers <brian@FreeBSD.org>1998-04-18 23:17:26 +0000
commit39d946522c45b0c5b443da352f49f9f180bd8ff4 (patch)
tree245be8107480887a04880b2344fd9cdb90cc71b5 /usr.sbin/ppp/bundle.c
parentcdbbb6b5718ba222e7883818b641074db8fd5209 (diff)
downloadsrc-39d946522c45b0c5b443da352f49f9f180bd8ff4.tar.gz
src-39d946522c45b0c5b443da352f49f9f180bd8ff4.zip
Destroy struct chat when it's finished in struct datalink.
Initialise chat timers correctly as they're malloc()ed as part of struct datalink, and initially contain garbage.
Notes
Notes: svn path=/cvs2svn/branches/MP/; revision=35276
Diffstat (limited to 'usr.sbin/ppp/bundle.c')
-rw-r--r--usr.sbin/ppp/bundle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/bundle.c b/usr.sbin/ppp/bundle.c
index e51e44581105..9c2d782604ef 100644
--- a/usr.sbin/ppp/bundle.c
+++ b/usr.sbin/ppp/bundle.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: bundle.c,v 1.1.2.51 1998/04/17 22:04:18 brian Exp $
+ * $Id: bundle.c,v 1.1.2.52 1998/04/17 22:05:03 brian Exp $
*/
#include <sys/types.h>
@@ -889,7 +889,7 @@ bundle_IdleTimeout(void *v)
struct bundle *bundle = (struct bundle *)v;
bundle->idle.done = 0;
- LogPrintf(LogPHASE, "IPCP Idle timer expired.\n");
+ LogPrintf(LogPHASE, "Idle timer expired.\n");
bundle_Close(bundle, NULL, 1);
}