aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-23 16:58:49 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-23 16:58:49 +0000
commit91f3165b2da17010fdb8d5d85e676fee442afcc4 (patch)
tree2e4e3be9ee0eb35252d97536a6d1934576390db8 /tmux.c
parentc24d849fa41114108b52a0a5e9256a7f0558b0d8 (diff)
downloadrtmux-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.c b/tmux.c
index b9e6e2fc..70121f56 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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':