components/tmux/patches/server-client.c.patch
author Misaki Miyashita <Misaki.Miyashita@Oracle.COM>
Wed, 13 Aug 2014 07:40:46 -0700
branchs11-update
changeset 3263 8766b70c7f00
parent 2787 f6f36f8682b5
permissions -rw-r--r--
19385782 Upgrade OpenSSL version to 1.0.1i 19385643 problem in LIBRARY/OPENSSL 19385653 problem in LIBRARY/OPENSSL 19385660 problem in LIBRARY/OPENSSL 19385675 problem in LIBRARY/OPENSSL 19385678 problem in LIBRARY/OPENSSL 19385688 problem in LIBRARY/OPENSSL 19385699 problem in LIBRARY/OPENSSL 19385708 problem in LIBRARY/OPENSSL 19385718 problem in LIBRARY/OPENSSL

In-House patch. Submitted to upstream, but not accepted yet.
Added errno.h to remove compile error of defininig extern int errno without including errno.h.

--- tmux-1.8/server-client.c.orig	2013-08-13 12:42:15.161702456 -0700
+++ tmux-1.8/server-client.c	2013-08-13 12:44:32.917403564 -0700
@@ -25,6 +25,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
+#include <errno.h>
 
 #include "tmux.h"