diff options
author | 2009-11-02 13:42:25 +0000 | |
---|---|---|
committer | 2009-11-02 13:42:25 +0000 | |
commit | b27d5dd13b45e982a459a8cc5e43251c44bb09c0 (patch) | |
tree | 46b44dddc7919442f880a7a94d9794a1e58ee74a /usr.bin/tmux/client.c | |
parent | There isn't much point in doing lstat before connect so instead just do connect (diff) | |
download | wireguard-openbsd-b27d5dd13b45e982a459a8cc5e43251c44bb09c0.tar.xz wireguard-openbsd-b27d5dd13b45e982a459a8cc5e43251c44bb09c0.zip |
Leftover unused variable :-/.
Diffstat (limited to 'usr.bin/tmux/client.c')
-rw-r--r-- | usr.bin/tmux/client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index bebe61e786f..c142e6c94b6 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.28 2009/11/02 13:41:25 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.29 2009/11/02 13:42:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -46,7 +46,6 @@ struct imsgbuf * client_init(char *path, int cmdflags, int flags) { struct sockaddr_un sa; - struct stat sb; size_t size; int fd, mode; char rpathbuf[MAXPATHLEN]; |