aboutsummaryrefslogtreecommitdiffstats
path: root/randpkt.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-09-17 04:38:23 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1999-09-17 04:38:23 +0000
commitc03993001759b8c3f5ef2c39eac83c86d02b80ab (patch)
tree9b6e211dbaeb2b6cf63de884a86f9b9f2b637e9a /randpkt.c
parent7909fbf7864759d9bf6bef2ce5b2062c2b9ac6ac (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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@684 f5534014-38df-0310-8fa8-9805f1628bb7
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])