From 0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 25 Nov 2007 10:59:44 +0000 Subject: [PATCH] Init local_log to -1. --- local.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/local.c b/local.c index 6b1c5099..fa15baa2 100644 --- a/local.c +++ b/local.c @@ -1,4 +1,4 @@ -/* $Id: local.c,v 1.21 2007-11-25 10:56:22 nicm Exp $ */ +/* $Id: local.c,v 1.22 2007-11-25 10:59:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -204,8 +204,8 @@ struct local_key local_keys[] = { }; /* tty file descriptor and local terminal buffers. */ -int local_fd; -int local_log; +int local_fd = -1; +int local_log = -1; struct buffer *local_in; struct buffer *local_out; struct termios local_tio;