=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/status.c,v retrieving revision 1.143 retrieving revision 1.144 diff -u -r1.143 -r1.144 --- src/usr.bin/tmux/status.c 2015/11/22 18:28:01 1.143 +++ src/usr.bin/tmux/status.c 2015/12/08 08:34:18 1.144 @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.143 2015/11/22 18:28:01 tim Exp $ */ +/* $OpenBSD: status.c,v 1.144 2015/12/08 08:34:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -500,9 +500,9 @@ return (xstrdup("")); if (c->flags & CLIENT_STATUSFORCE) - ft = format_create_flags(FORMAT_STATUS|FORMAT_FORCE); + ft = format_create(FORMAT_STATUS|FORMAT_FORCE); else - ft = format_create_flags(FORMAT_STATUS); + ft = format_create(FORMAT_STATUS); format_defaults(ft, c, NULL, wl, NULL); expanded = format_expand_time(ft, fmt, t); @@ -661,7 +661,7 @@ int keys; time_t t; - ft = format_create(); + ft = format_create(0); format_defaults(ft, c, NULL, NULL, NULL); t = time(NULL); @@ -722,7 +722,7 @@ struct format_tree *ft; time_t t; - ft = format_create(); + ft = format_create(0); format_defaults(ft, c, NULL, NULL, NULL); t = time(NULL);