diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-08-24 21:30:14 +0200 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-08-24 21:30:14 +0200 |
commit | 727abf64e76efce9867f8906c233e08a28ac0fb2 (patch) | |
tree | d93d151c34aaaf757be9981e1f6bf1473f6dc81e /nest/proto.c | |
parent | 7d95e8ba16596b5e10a7f5bf68bf7a1bf846d670 (diff) |
WIP: commit changed filescurrent-busch
Diffstat (limited to 'nest/proto.c')
-rw-r--r-- | nest/proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/proto.c b/nest/proto.c index 5082922c..ffc16617 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -626,7 +626,7 @@ channel_copy_config(struct channel_config *src, struct proto_config *proto) struct channel_config *dst = cfg_alloc(src->channel->config_size); memcpy(dst, src, src->channel->config_size); - //memset(&dst->n, 0, sizeof(dst->n)); + memset(&dst->n, 0, sizeof(dst->n)); add_tail(&proto->channels, &dst->n); CALL(src->channel->copy_config, dst, src); |