Update of /cvsroot/tmux/tmux
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv26548

Modified Files:
        status.c 
Log Message:
Sync OpenBSD patchset 827:

Handle a # at the end of a replacement string (such as status-left)
correctly. Found by Thomas Adam.


Index: status.c
===================================================================
RCS file: /cvsroot/tmux/tmux/status.c,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -d -r1.153 -r1.154
--- status.c    3 Jan 2011 23:52:38 -0000       1.153
+++ status.c    7 Jan 2011 14:32:26 -0000       1.154
@@ -469,7 +469,7 @@
                        break;
                ch = *iptr++;
 
-               if (ch != '#') {
+               if (ch != '#' || *iptr == '\0') {
                        *optr++ = ch;
                        continue;
                }


------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to