summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/bgpd.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-04-29 19:56:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-04-29 19:56:05 +0000
commit192c29c129918b8523baca5a5b5f0d4d78497439 (patch)
tree2f6665c7ed86ef609f9d51464674039bde2907ec /usr.sbin/bgpd/bgpd.h
parentc427f27d9c495f2eb86e1695f38f557dafb054b2 (diff)
sock -> fd; ok henning
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r--usr.sbin/bgpd/bgpd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h
index 38961b2b2d1..44ecdbd2b84 100644
--- a/usr.sbin/bgpd/bgpd.h
+++ b/usr.sbin/bgpd/bgpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.h,v 1.118 2004/04/28 04:34:46 henning Exp $ */
+/* $OpenBSD: bgpd.h,v 1.119 2004/04/29 19:56:04 deraadt Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -85,7 +85,7 @@ struct buf {
struct msgbuf {
u_int32_t queued;
- int sock;
+ int fd;
TAILQ_HEAD(bufs, buf) bufs;
};
@@ -217,7 +217,7 @@ struct network {
#define MAX_IMSGSIZE 8192
struct imsgbuf {
- int sock;
+ int fd;
pid_t pid;
struct buf_read r;
struct msgbuf w;