diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-30 20:21:55 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-30 20:21:55 +0000 |
commit | 6fbfcfc0d78c9b00181bb2465ede73b18ac92cef (patch) | |
tree | 0ce9baddae86cbe0fe3c30b343bf27b4c1f5e002 /client-msg.c | |
parent | 5a9b7b230cc22728b39845e212ff9ff939d1f678 (diff) | |
download | rtmux-6fbfcfc0d78c9b00181bb2465ede73b18ac92cef.tar.gz rtmux-6fbfcfc0d78c9b00181bb2465ede73b18ac92cef.tar.bz2 rtmux-6fbfcfc0d78c9b00181bb2465ede73b18ac92cef.zip |
Sync OpenBSD patchset 196:
Rename struct hdrtype to msgtype which is a better name and can be used even
when struct hdr disappears.
Diffstat (limited to 'client-msg.c')
-rw-r--r-- | client-msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client-msg.c b/client-msg.c index 5e7dc00a..50ec9586 100644 --- a/client-msg.c +++ b/client-msg.c @@ -1,4 +1,4 @@ -/* $Id: client-msg.c,v 1.22 2009-07-28 22:12:16 tcunha Exp $ */ +/* $Id: client-msg.c,v 1.23 2009-07-30 20:21:55 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -33,7 +33,7 @@ int client_msg_fn_exited(struct hdr *, struct client_ctx *); int client_msg_fn_suspend(struct hdr *, struct client_ctx *); struct client_msg { - enum hdrtype type; + enum msgtype type; int (*fn)(struct hdr *, struct client_ctx *); }; struct client_msg client_msg_table[] = { |