From ce2dc2a66af7ae9b92ec747fa7e5cbd0b78e0377 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 30 Jun 2008 19:11:33 +0000 Subject: Set up environ properly. --- session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'session.c') diff --git a/session.c b/session.c index 5d3f79ea..b16482e7 100644 --- a/session.c +++ b/session.c @@ -1,4 +1,4 @@ -/* $Id: session.c,v 1.40 2008-06-29 07:04:30 nicm Exp $ */ +/* $Id: session.c,v 1.41 2008-06-30 19:11:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -191,7 +191,7 @@ struct winlink * session_new(struct session *s, const char *name, const char *cmd, int idx) { struct window *w; - const char *env[] = { NULL, "TERM=screen", NULL }; + const char *env[] = { NULL /* TMUX= */, "TERM=screen", NULL }; char buf[256]; u_int i, hlimit; -- cgit