summaryrefslogtreecommitdiffstats
path: root/proto/pipe
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-12-21 11:53:58 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2009-12-21 11:53:58 +0100
commitc4ae53858be1bce6798f31ee2fb46775a607085f (patch)
treec700867af516b04c7e4b8f5b958f9d00e57d4ecf /proto/pipe
parentfbcb7d5faf419057ccbe2340f3714f8885495c51 (diff)
downloadbird-c4ae53858be1bce6798f31ee2fb46775a607085f.tar
bird-c4ae53858be1bce6798f31ee2fb46775a607085f.zip
Change default mode of pipes to transparent.
Opaque pipes are obsolete and should disappear in the future.
Diffstat (limited to 'proto/pipe')
-rw-r--r--proto/pipe/config.Y2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/pipe/config.Y b/proto/pipe/config.Y
index 4e6c80c..e1c981b 100644
--- a/proto/pipe/config.Y
+++ b/proto/pipe/config.Y
@@ -25,7 +25,7 @@ CF_ADDTO(proto, pipe_proto '}')
pipe_proto_start: proto_start PIPE {
this_proto = proto_config_new(&proto_pipe, sizeof(struct pipe_config));
this_proto->preference = DEF_PREF_PIPE;
- PIPE_CFG->mode = PIPE_OPAQUE;
+ PIPE_CFG->mode = PIPE_TRANSPARENT;
}
;