diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-03-01 09:05:08 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-03-01 09:05:08 +0000 |
commit | 3425ebc2fc392523b75178030a33bdb2aee484a5 (patch) | |
tree | e1cd611c4c2040b5cb1630ff2789f4a6eeb4ee35 /usr.sbin/ldpd | |
parent | 63fc933407d4606b9564c05a7655535cde2a36d9 (diff) |
nitpicking, NULL instead of 0 in lde_imsg_compose_ldpe() call.
Diffstat (limited to 'usr.sbin/ldpd')
-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: |