diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-09-17 04:38:23 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-09-17 04:38:23 +0000 |
commit | ff20b92b67d90a1e14ef73fde3300cec25c54932 (patch) | |
tree | 9b6e211dbaeb2b6cf63de884a86f9b9f2b637e9a /randpkt.c | |
parent | 7b6a195ea3c76500f0fb6210cb5a1d069c362410 (diff) | |
download | wireshark-ff20b92b67d90a1e14ef73fde3300cec25c54932.tar.gz wireshark-ff20b92b67d90a1e14ef73fde3300cec25c54932.tar.bz2 wireshark-ff20b92b67d90a1e14ef73fde3300cec25c54932.zip |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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]) |