http://bugzilla.opensuse.org/show_bug.cgi?id=1185572 http://bugzilla.opensuse.org/show_bug.cgi?id=1185572#c1 Dominique Leuenberger <dimstar@opensuse.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gber@opensuse.org, | |mimi.vx@gmail.com, | |nemysis@openSUSE.org Assignee|yast2-maintainers@suse.de |dmueller@suse.com --- Comment #1 from Dominique Leuenberger <dimstar@opensuse.org> --- Assigning to Dirk, who did the update. Tracked it down a bit already: Upstream's change https://github.com/tmux/tmux/commit/d53e1fedd595db68a4e5bc9e3e7024fa924300d3 Adjusted how the socket location is being defined #define TMUX_SOCK "$TMUX_TMPDIR:" _PATH_TMP then later does expand_paths(TMUX_SOCK, &paths, &n); xasprintf(&base, "%s/tmux-%ld", path, (long)uid); We have a patch though (was rebased for 3.2) that does: - xasprintf(&base, "%s/tmux-%ld", path, (long)uid); + xasprintf(&base, "/run/tmux/%ld", (long)uid); Which means we no hardcode /run/tmux/%ld - without a chance to override it from outside via TMUX_TMPDIR -- You are receiving this mail because: You are on the CC list for the bug.