=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/Attic/cmd-server-info.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- src/usr.bin/tmux/Attic/cmd-server-info.c 2010/12/21 22:37:59 1.19 +++ src/usr.bin/tmux/Attic/cmd-server-info.c 2011/01/01 03:32:28 1.20 @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-server-info.c,v 1.19 2010/12/21 22:37:59 nicm Exp $ */ +/* $OpenBSD: cmd-server-info.c,v 1.20 2011/01/01 03:32:28 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -48,24 +48,24 @@ int cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx) { - struct tty_term *term; - struct client *c; - struct session *s; - struct winlink *wl; - struct window *w; - struct window_pane *wp; - struct tty_code *code; - struct tty_term_code_entry *ent; - struct utsname un; - struct job *job; - struct grid *gd; - struct grid_line *gl; - u_int i, j, k; - char out[80]; - char *tim; - time_t t; - u_int lines, ulines; - size_t size, usize; + struct tty_term *term; + struct client *c; + struct session *s; + struct winlink *wl; + struct window *w; + struct window_pane *wp; + struct tty_code *code; + const struct tty_term_code_entry *ent; + struct utsname un; + struct job *job; + struct grid *gd; + struct grid_line *gl; + u_int i, j, k; + char out[80]; + char *tim; + time_t t; + u_int lines, ulines; + size_t size, usize; tim = ctime(&start_time); *strchr(tim, '\n') = '\0';