diff options
author | brian <brian@cvs.openbsd.org> | 1999-06-02 23:07:00 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1999-06-02 23:07:00 +0000 |
commit | 3317f5b7ca1f7c93254501a5e571ec42cf92c7ac (patch) | |
tree | ef1d155839a22b6f207618d3468984e6376cd32a | |
parent | b9c987938b4302b51e075629b55a298735deb4c9 (diff) |
Oops, quieten a compiler warning.
-rw-r--r-- | usr.sbin/ppp/ppp/mp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ppp/mp.c b/usr.sbin/ppp/ppp/mp.c index b7d4136806b..a49bdf8aed5 100644 --- a/usr.sbin/ppp/ppp/mp.c +++ b/usr.sbin/ppp/ppp/mp.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp.c,v 1.8 1999/06/02 15:58:41 brian Exp $ + * $Id: mp.c,v 1.9 1999/06/02 23:06:59 brian Exp $ */ #include <sys/param.h> @@ -696,6 +696,7 @@ mp_ShowStatus(struct cmdargs const *arg) struct mbuf *m, *lm; int bufs = 0; + lm = NULL; prompt_Printf(arg->prompt, "Socket: %s\n", mp->server.socket.sun_path); for (m = mp->inbufs; m; m = m->pnext) { |