better error message

This commit is contained in:
Nicolas Viennot 2016-03-27 02:29:43 -04:00
parent b88f66192f
commit 9b5bb8390c

View File

@ -296,6 +296,13 @@ client_main(struct event_base *base, int argc, char **argv, int flags,
fprintf(stderr, "no server running on %s\n",
socket_path);
} else {
#ifdef TMATE
if (errno == ENOENT)
fprintf(stderr, "You must specify a socket name with -S. For example: \n"
" tmate -S /tmp/tmate.sock new-session -d\n"
" tmate -S /tmp/tmate.sock wait tmate-ready\n");
else
#endif
fprintf(stderr, "error connecting to %s (%s)\n",
socket_path, strerror(errno));
}