From: paul Date: Thu, 23 Dec 2004 19:35:56 +0000 (+0000) Subject: 2004-12-23 Paul Jakma X-Git-Tag: frr-2.0-rc1~3280 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=6f594023a50ccb3dd4ce809614789104051d91bb;p=matthieu%2Ffrr.git 2004-12-23 Paul Jakma * watchquagga.c: Add missing getopt.h include --- diff --git a/watchquagga/ChangeLog b/watchquagga/ChangeLog index 3e3017e4c9..4cea8b4edd 100644 --- a/watchquagga/ChangeLog +++ b/watchquagga/ChangeLog @@ -1,3 +1,7 @@ +2004-12-23 Paul Jakma + + * watchquagga.c: Add missing getopt.h include + 2004-12-22 Andrew J. Schorr * watchquagga.c: Try for gcc 2.95 compatibility (avoid %z and a tricky diff --git a/watchquagga/watchquagga.c b/watchquagga/watchquagga.c index efc29070c6..fb1dbdd8ba 100644 --- a/watchquagga/watchquagga.c +++ b/watchquagga/watchquagga.c @@ -1,5 +1,5 @@ /* - $Id: watchquagga.c,v 1.5 2004/12/22 17:00:46 ajs Exp $ + $Id: watchquagga.c,v 1.6 2004/12/23 19:35:56 paul Exp $ Monitor status of quagga daemons and restart if necessary. @@ -44,6 +44,7 @@ #include #include #include +#include #ifndef MIN #define MIN(X,Y) (((X) <= (Y)) ? (X) : (Y))