diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 16:58:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 16:58:49 +0000 |
commit | 91f3165b2da17010fdb8d5d85e676fee442afcc4 (patch) | |
tree | 2e4e3be9ee0eb35252d97536a6d1934576390db8 /tmux.c | |
parent | c24d849fa41114108b52a0a5e9256a7f0558b0d8 (diff) | |
download | rtmux-91f3165b2da17010fdb8d5d85e676fee442afcc4.tar.gz rtmux-91f3165b2da17010fdb8d5d85e676fee442afcc4.tar.bz2 rtmux-91f3165b2da17010fdb8d5d85e676fee442afcc4.zip |
IRIX fixes thanks to Elias Pipping.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.67 2008-06-23 07:41:21 nicm Exp $ */ +/* $Id: tmux.c,v 1.68 2008-06-23 16:58:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -176,11 +176,11 @@ main(int argc, char **argv) struct hdr hdr; const char *shell; struct passwd *pw; - char *client, *path, *name, *cause, *home; + char *path, *cause, *home; char rpath[MAXPATHLEN]; int n, opt; - client = path = name = NULL; + path = NULL; while ((opt = getopt(argc, argv, "f:qS:Vv")) != EOF) { switch (opt) { case 'f': |