summaryrefslogtreecommitdiff
path: root/watchquagga
diff options
context:
space:
mode:
authorpaul <paul>2004-12-23 19:35:56 +0000
committerpaul <paul>2004-12-23 19:35:56 +0000
commit6f594023a50ccb3dd4ce809614789104051d91bb (patch)
tree602e48c5e73d3e1c63654083e3dd9e5b3c7f4837 /watchquagga
parentf3931751663bfbe511a8f1d04aef10c38744481a (diff)
2004-12-23 Paul Jakma <paul@dishone.st>
* watchquagga.c: Add missing getopt.h include
Diffstat (limited to 'watchquagga')
-rw-r--r--watchquagga/ChangeLog4
-rw-r--r--watchquagga/watchquagga.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/watchquagga/ChangeLog b/watchquagga/ChangeLog
index 3e3017e4..4cea8b4e 100644
--- a/watchquagga/ChangeLog
+++ b/watchquagga/ChangeLog
@@ -1,3 +1,7 @@
+2004-12-23 Paul Jakma <paul@dishone.st>
+
+ * watchquagga.c: Add missing getopt.h include
+
2004-12-22 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* watchquagga.c: Try for gcc 2.95 compatibility (avoid %z and a tricky
diff --git a/watchquagga/watchquagga.c b/watchquagga/watchquagga.c
index efc29070..fb1dbdd8 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 <log.h>
#include <sigevent.h>
#include <version.h>
+#include <getopt.h>
#ifndef MIN
#define MIN(X,Y) (((X) <= (Y)) ? (X) : (Y))