[BACK]Return to key-bindings.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/key-bindings.c between version 1.2 and 1.3

version 1.2, 2009/07/12 17:33:18 version 1.3, 2009/07/15 17:39:00
Line 194 
Line 194 
         va_end(ap);          va_end(ap);
   
         *msg = toupper((u_char) *msg);          *msg = toupper((u_char) *msg);
         status_message_set(ctx->curclient, msg);          status_message_set(ctx->curclient, "%s", msg);
         xfree(msg);          xfree(msg);
 }  }
   
Line 227 
Line 227 
         va_end(ap);          va_end(ap);
   
         *msg = toupper((u_char) *msg);          *msg = toupper((u_char) *msg);
         status_message_set(ctx->curclient, msg);          status_message_set(ctx->curclient, "%s", msg);
         xfree(msg);          xfree(msg);
 }  }
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3