From 65b9aeb33707e9663ac594b872ab33b9a78d7daa Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 4 Mar 2009 17:24:07 +0000 Subject: Put socket path in $TMUX. --- client-fn.c | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) (limited to 'client-fn.c') diff --git a/client-fn.c b/client-fn.c index 3171f223..2e3ca11b 100644 --- a/client-fn.c +++ b/client-fn.c @@ -1,4 +1,4 @@ -/* $Id: client-fn.c,v 1.5 2009-01-10 14:43:43 nicm Exp $ */ +/* $Id: client-fn.c,v 1.6 2009-03-04 17:24:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -26,29 +26,39 @@ void client_fill_session(struct msg_command_data *data) { - char *env, *ptr, buf[256]; + char *env, *ptr1, *ptr2, buf[256]; + size_t len; const char *errstr; long long ll; data->pid = -1; if ((env = getenv("TMUX")) == NULL) return; - if ((ptr = strchr(env, ',')) == NULL) + + if ((ptr2 = strrchr(env, ',')) == NULL || ptr2 == env) return; - if ((size_t) (ptr - env) > sizeof buf) + for (ptr1 = ptr2 - 1; ptr1 > env && *ptr1 != ','; ptr1--) + ; + if (*ptr1 != ',') return; - memcpy(buf, env, ptr - env); - buf[ptr - env] = '\0'; + ptr1++; + ptr2++; - ll = strtonum(ptr + 1, 0, UINT_MAX, &errstr); - if (errstr != NULL) + len = ptr2 - ptr1 - 1; + if (len > (sizeof buf) - 1) return; - data->idx = ll; + memcpy(buf, ptr1, len); + buf[len] = '\0'; ll = strtonum(buf, 0, LONG_MAX, &errstr); if (errstr != NULL) return; data->pid = ll; + + ll = strtonum(ptr2, 0, UINT_MAX, &errstr); + if (errstr != NULL) + return; + data->idx = ll; } void -- cgit