aboutsummaryrefslogtreecommitdiffstats
path: root/randpkt.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-09-17 04:38:23 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-09-17 04:38:23 +0000
commitff20b92b67d90a1e14ef73fde3300cec25c54932 (patch)
tree9b6e211dbaeb2b6cf63de884a86f9b9f2b637e9a /randpkt.c
parent7b6a195ea3c76500f0fb6210cb5a1d069c362410 (diff)
Fixed randpkt so it isn't linked to X11 libs. Removed randpkt from default
target list, so a 'make randpkt' is required if you want to build it. svn path=/trunk/; revision=684
Diffstat (limited to 'randpkt.c')
-rw-r--r--randpkt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/randpkt.c b/randpkt.c
index 9a2ade5056..c3a4c52b5e 100644
--- a/randpkt.c
+++ b/randpkt.c
@@ -4,7 +4,7 @@
* Creates random packet traces. Useful for debugging sniffers by testing
* assumptions about the veracity of the data found in the packet.
*
- * $Id: randpkt.c,v 1.2 1999/09/10 15:38:48 gram Exp $
+ * $Id: randpkt.c,v 1.3 1999/09/17 04:38:14 gram Exp $
*
* Copyright (C) 1999 by Gilbert Ramirez <gram@xiexie.org>
*
@@ -42,7 +42,7 @@
#include <stdlib.h>
#include <string.h>
#include <glib.h>
-#include <wtap.h>
+#include "wiretap/wtap.h"
#define array_length(x) (sizeof x / sizeof x[0])