diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-28 23:12:38 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-28 23:12:38 +0000 |
commit | a5acabd9230eb70e802ece13542ec647c52b7ee2 (patch) | |
tree | 1b9cac80e3edf158c0a820cf027656f4c0f6ca06 | |
parent | e65aa04ad780b76c3356d281677bb7a71c89cda3 (diff) | |
download | rtmux-a5acabd9230eb70e802ece13542ec647c52b7ee2.tar.gz rtmux-a5acabd9230eb70e802ece13542ec647c52b7ee2.tar.bz2 rtmux-a5acabd9230eb70e802ece13542ec647c52b7ee2.zip |
Sync OpenBSD patchset 467:
tabs are better; ok nicm
-rw-r--r-- | array.h | 4 | ||||
-rw-r--r-- | cfg.c | 6 | ||||
-rw-r--r-- | cmd-server-info.c | 6 | ||||
-rw-r--r-- | cmd-string.c | 42 | ||||
-rw-r--r-- | cmd.c | 6 | ||||
-rw-r--r-- | input.c | 8 | ||||
-rw-r--r-- | server-client.c | 6 | ||||
-rw-r--r-- | server.c | 10 | ||||
-rw-r--r-- | tmux.c | 12 | ||||
-rw-r--r-- | tty.c | 4 | ||||
-rw-r--r-- | xmalloc.c | 64 |
11 files changed, 84 insertions, 84 deletions
@@ -1,4 +1,4 @@ -/* $Id: array.h,v 1.7 2008-09-29 16:58:02 nicm Exp $ */ +/* $Id: array.h,v 1.8 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2006 Nicholas Marriott <nicm@users.sourceforge.net> @@ -85,7 +85,7 @@ ARRAY_ITEMSIZE(a) * ((a)->num - (i) - 1)); \ } \ (a)->num--; \ - if ((a)->num == 0) \ + if ((a)->num == 0) \ ARRAY_FREE(a); \ } while (0) @@ -1,4 +1,4 @@ -/* $Id: cfg.c,v 1.22 2009-08-24 16:27:03 tcunha Exp $ */ +/* $Id: cfg.c,v 1.23 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -53,9 +53,9 @@ cfg_error(unused struct cmd_ctx *ctx, const char *fmt, ...) int load_cfg(const char *path, struct cmd_ctx *ctxin, char **cause) { - FILE *f; + FILE *f; u_int n; - char *buf, *line, *ptr; + char *buf, *line, *ptr; size_t len; struct cmd_list *cmdlist; struct cmd_ctx ctx; diff --git a/cmd-server-info.c b/cmd-server-info.c index 19d0e59a..fff0b831 100644 --- a/cmd-server-info.c +++ b/cmd-server-info.c @@ -1,4 +1,4 @@ -/* $Id: cmd-server-info.c,v 1.30 2009-10-15 01:51:09 tcunha Exp $ */ +/* $Id: cmd-server-info.c,v 1.31 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -70,8 +70,8 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx) "tmux " BUILD ", pid %ld, started %s", (long) getpid(), tim); ctx->print(ctx, "socket path %s, debug level %d%s", socket_path, debug_level, be_quiet ? ", quiet" : ""); - if (uname(&un) == 0) { - ctx->print(ctx, "system is %s %s %s %s", + if (uname(&un) == 0) { + ctx->print(ctx, "system is %s %s %s %s", un.sysname, un.release, un.version, un.machine); } if (cfg_file != NULL) diff --git a/cmd-string.c b/cmd-string.c index 40d5c285..13fb6c76 100644 --- a/cmd-string.c +++ b/cmd-string.c @@ -1,4 +1,4 @@ -/* $Id: cmd-string.c,v 1.23 2009-08-09 17:48:55 tcunha Exp $ */ +/* $Id: cmd-string.c,v 1.24 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -204,33 +204,33 @@ cmd_string_string(const char *s, size_t *p, char endch, int esc) char *buf, *t; size_t len; - buf = NULL; + buf = NULL; len = 0; - while ((ch = cmd_string_getc(s, p)) != endch) { - switch (ch) { + while ((ch = cmd_string_getc(s, p)) != endch) { + switch (ch) { case EOF: goto error; - case '\\': + case '\\': if (!esc) break; - switch (ch = cmd_string_getc(s, p)) { + switch (ch = cmd_string_getc(s, p)) { case EOF: goto error; case 'e': ch = '\033'; break; - case 'r': - ch = '\r'; - break; - case 'n': - ch = '\n'; - break; - case 't': - ch = '\t'; - break; - } - break; + case 'r': + ch = '\r'; + break; + case 'n': + ch = '\n'; + break; + case 't': + ch = '\t'; + break; + } + break; case '$': if (!esc) break; @@ -241,13 +241,13 @@ cmd_string_string(const char *s, size_t *p, char endch, int esc) len += strlen(t); xfree(t); continue; - } + } if (len >= SIZE_MAX - 2) goto error; buf = xrealloc(buf, 1, len + 1); - buf[len++] = ch; - } + buf[len++] = ch; + } buf = xrealloc(buf, 1, len + 1); buf[len] = '\0'; @@ -272,7 +272,7 @@ cmd_string_variable(const char *s, size_t *p) ((ch) >= 'a' && (ch) <= 'z') || ((ch) >= 'A' && (ch) <= 'Z') || \ ((ch) >= '0' && (ch) <= '9')) - buf = NULL; + buf = NULL; len = 0; fch = EOF; @@ -1,4 +1,4 @@ -/* $Id: cmd.c,v 1.125 2009-10-15 01:56:45 tcunha Exp $ */ +/* $Id: cmd.c,v 1.126 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -178,7 +178,7 @@ struct cmd * cmd_parse(int argc, char **argv, char **cause) { const struct cmd_entry **entryp, *entry; - struct cmd *cmd; + struct cmd *cmd; char s[BUFSIZ]; int opt, ambiguous = 0; @@ -841,7 +841,7 @@ cmd_find_pane(struct cmd_ctx *ctx, /* Get the current session. */ if ((s = cmd_current_session(ctx)) == NULL) { - ctx->error(ctx, "can't establish current session"); + ctx->error(ctx, "can't establish current session"); return (NULL); } if (sp != NULL) @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.100 2009-10-25 10:39:48 tcunha Exp $ */ +/* $Id: input.c,v 1.101 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -128,7 +128,7 @@ input_sequence_cmp(const void *a, const void *b) void input_new_argument(struct input_ctx *ictx) { - struct input_arg *arg; + struct input_arg *arg; ARRAY_EXPAND(&ictx->args, 1); @@ -139,7 +139,7 @@ input_new_argument(struct input_ctx *ictx) int input_add_argument(struct input_ctx *ictx, u_char ch) { - struct input_arg *arg; + struct input_arg *arg; if (ARRAY_LENGTH(&ictx->args) == 0) return (0); @@ -792,7 +792,7 @@ input_handle_sequence(u_char ch, struct input_ctx *ictx) { struct input_sequence_entry *entry, find; struct screen *s = ictx->ctx.s; - u_int i; + u_int i; struct input_arg *iarg; log_debug2("-- sq %zu: %hhu (%c): %u [sx=%u, sy=%u, cx=%u, cy=%u, " diff --git a/server-client.c b/server-client.c index dcfa7d4f..254766a1 100644 --- a/server-client.c +++ b/server-client.c @@ -1,4 +1,4 @@ -/* $Id: server-client.c,v 1.8 2009-10-28 23:06:41 tcunha Exp $ */ +/* $Id: server-client.c,v 1.9 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -491,8 +491,8 @@ server_client_msg_dispatch(struct client *c) struct msg_environ_data environdata; ssize_t n, datalen; - if ((n = imsg_read(&c->ibuf)) == -1 || n == 0) - return (-1); + if ((n = imsg_read(&c->ibuf)) == -1 || n == 0) + return (-1); for (;;) { if ((n = imsg_get(&c->ibuf, &imsg)) == -1) @@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.212 2009-10-28 23:11:07 tcunha Exp $ */ +/* $Id: server.c,v 1.213 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -670,12 +670,12 @@ void server_lock_sessions(void) { struct session *s; - u_int i; + u_int i; int timeout; - time_t t; + time_t t; - t = time(NULL); - for (i = 0; i < ARRAY_LENGTH(&sessions); i++) { + t = time(NULL); + for (i = 0; i < ARRAY_LENGTH(&sessions); i++) { if ((s = ARRAY_ITEM(&sessions, i)) == NULL) continue; @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.181 2009-10-28 22:48:35 tcunha Exp $ */ +/* $Id: tmux.c,v 1.182 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -353,10 +353,10 @@ main(int argc, char **argv) case 'v': debug_level++; break; - default: + default: usage(); - } - } + } + } argc -= optind; argv += optind; @@ -578,7 +578,7 @@ main(int argc, char **argv) if (pfd.revents & (POLLERR|POLLHUP|POLLNVAL)) fatalx("socket error"); - if (pfd.revents & POLLIN) { + if (pfd.revents & POLLIN) { if (dispatch_imsg(ibuf, shellcmd, &retcode) != 0) break; } @@ -603,7 +603,7 @@ dispatch_imsg(struct imsgbuf *ibuf, const char *shellcmd, int *retcode) struct msg_print_data printdata; struct msg_shell_data shelldata; - if ((n = imsg_read(ibuf)) == -1 || n == 0) + if ((n = imsg_read(ibuf)) == -1 || n == 0) fatalx("imsg_read failed"); for (;;) { @@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.163 2009-10-28 22:48:35 tcunha Exp $ */ +/* $Id: tty.c,v 1.164 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -147,7 +147,7 @@ tty_start_tty(struct tty *tty) tio.c_lflag &= ~(IEXTEN|ICANON|ECHO|ECHOE|ECHONL|ECHOCTL| ECHOPRT|ECHOKE|ECHOCTL|ISIG); tio.c_cc[VMIN] = 1; - tio.c_cc[VTIME] = 0; + tio.c_cc[VTIME] = 0; if (tcsetattr(tty->fd, TCSANOW, &tio) != 0) fatal("tcsetattr failed"); @@ -1,4 +1,4 @@ -/* $Id: xmalloc.c,v 1.11 2009-10-28 23:08:04 tcunha Exp $ */ +/* $Id: xmalloc.c,v 1.12 2009-10-28 23:12:38 tcunha Exp $ */ /* * Copyright (c) 2004 Nicholas Marriott <nicm@users.sourceforge.net> @@ -42,16 +42,16 @@ xstrdup(const char *s) void * xcalloc(size_t nmemb, size_t size) { - void *ptr; + void *ptr; - if (size == 0 || nmemb == 0) + if (size == 0 || nmemb == 0) fatalx("zero size"); - if (SIZE_MAX / nmemb < size) - fatalx("nmemb * size > SIZE_MAX"); - if ((ptr = calloc(nmemb, size)) == NULL) + if (SIZE_MAX / nmemb < size) + fatalx("nmemb * size > SIZE_MAX"); + if ((ptr = calloc(nmemb, size)) == NULL) fatal("xcalloc failed"); - return (ptr); + return (ptr); } void * @@ -59,12 +59,12 @@ xmalloc(size_t size) { void *ptr; - if (size == 0) - fatalx("zero size"); - if ((ptr = malloc(size)) == NULL) + if (size == 0) + fatalx("zero size"); + if ((ptr = malloc(size)) == NULL) fatal("xmalloc failed"); - return (ptr); + return (ptr); } void * @@ -74,13 +74,13 @@ xrealloc(void *oldptr, size_t nmemb, size_t size) void *newptr; if (newsize == 0) - fatalx("zero size"); - if (SIZE_MAX / nmemb < size) - fatalx("nmemb * size > SIZE_MAX"); - if ((newptr = realloc(oldptr, newsize)) == NULL) + fatalx("zero size"); + if (SIZE_MAX / nmemb < size) + fatalx("nmemb * size > SIZE_MAX"); + if ((newptr = realloc(oldptr, newsize)) == NULL) fatal("xrealloc failed"); - return (newptr); + return (newptr); } void @@ -94,12 +94,12 @@ xfree(void *ptr) int printflike2 xasprintf(char **ret, const char *fmt, ...) { - va_list ap; - int i; + va_list ap; + int i; - va_start(ap, fmt); - i = xvasprintf(ret, fmt, ap); - va_end(ap); + va_start(ap, fmt); + i = xvasprintf(ret, fmt, ap); + va_end(ap); return (i); } @@ -110,21 +110,21 @@ xvasprintf(char **ret, const char *fmt, va_list ap) int i; i = vasprintf(ret, fmt, ap); - if (i < 0 || *ret == NULL) - fatal("xvasprintf failed"); + if (i < 0 || *ret == NULL) + fatal("xvasprintf failed"); - return (i); + return (i); } int printflike3 xsnprintf(char *buf, size_t len, const char *fmt, ...) { - va_list ap; - int i; + va_list ap; + int i; - va_start(ap, fmt); - i = xvsnprintf(buf, len, fmt, ap); - va_end(ap); + va_start(ap, fmt); + i = xvsnprintf(buf, len, fmt, ap); + va_end(ap); return (i); } @@ -138,8 +138,8 @@ xvsnprintf(char *buf, size_t len, const char *fmt, va_list ap) fatalx("len > INT_MAX"); i = vsnprintf(buf, len, fmt, ap); - if (i < 0) - fatal("vsnprintf failed"); + if (i < 0) + fatal("vsnprintf failed"); - return (i); + return (i); } |