diff options
author | 2010-03-01 09:05:07 +0000 | |
---|---|---|
committer | 2010-03-01 09:05:07 +0000 | |
commit | 140227a0cd6d1a31fef94d736e13cc6c3a612930 (patch) | |
tree | 3dd0f2776d908264b67f1f231a2d3c87ac52d812 | |
parent | Support for redistributing AS-ext LSA (redistribute static/connected). (diff) | |
download | wireguard-openbsd-140227a0cd6d1a31fef94d736e13cc6c3a612930.tar.xz wireguard-openbsd-140227a0cd6d1a31fef94d736e13cc6c3a612930.zip |
nitpicking, NULL instead of 0 in lde_imsg_compose_ldpe() call.
-rw-r--r-- | usr.sbin/ldpd/lde.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldpd/lde.c b/usr.sbin/ldpd/lde.c index 31171f22151..536716be62b 100644 --- a/usr.sbin/ldpd/lde.c +++ b/usr.sbin/ldpd/lde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lde.c,v 1.8 2010/02/19 12:49:21 claudio Exp $ */ +/* $OpenBSD: lde.c,v 1.9 2010/03/01 09:05:07 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Claudio Jeker <claudio@openbsd.org> @@ -242,7 +242,7 @@ lde_dispatch_imsg(int fd, short event, void *bula) rt_snap(imsg.hdr.peerid); lde_imsg_compose_ldpe(IMSG_MAPPING_ADD_END, - imsg.hdr.peerid, 0, 0, 0); + imsg.hdr.peerid, 0, NULL, 0); break; case IMSG_LABEL_REQUEST: |