aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDima Ruban <dima@FreeBSD.org>1998-10-20 07:07:07 +0000
committerDima Ruban <dima@FreeBSD.org>1998-10-20 07:07:07 +0000
commite9b30c621de2ae3edfc9e1d4ea3db23eb311936f (patch)
tree63c569dbb46377255e640d9e065144d7060d3738
parent2426ecdfa252acce09b680d5d928b6ea1f4cd441 (diff)
downloadsrc-e9b30c621de2ae3edfc9e1d4ea3db23eb311936f.tar.gz
src-e9b30c621de2ae3edfc9e1d4ea3db23eb311936f.zip
make talk/talkd work on alpha.
Notes
Notes: svn path=/head/; revision=40536
-rw-r--r--include/protocols/talkd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/protocols/talkd.h b/include/protocols/talkd.h
index 34b5da2e567e..962e47be7e0d 100644
--- a/include/protocols/talkd.h
+++ b/include/protocols/talkd.h
@@ -62,10 +62,10 @@ typedef struct {
u_char type; /* request type, see below */
u_char answer; /* not used */
u_char pad;
- u_long id_num; /* message id */
+ u_int32_t id_num; /* message id */
struct osockaddr addr; /* old (4.3) style */
struct osockaddr ctl_addr; /* old (4.3) style */
- long pid; /* caller's process id */
+ int32_t pid; /* caller's process id */
#define NAME_SIZE 12
char l_name[NAME_SIZE];/* caller's name */
char r_name[NAME_SIZE];/* callee's name */
@@ -81,7 +81,7 @@ typedef struct {
u_char type; /* type of request message, see below */
u_char answer; /* respose to request message, see below */
u_char pad;
- u_long id_num; /* message id */
+ u_int32_t id_num; /* message id */
struct osockaddr addr; /* address for establishing conversation */
} CTL_RESPONSE;