aboutsummaryrefslogtreecommitdiffstats
path: root/randpkt.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-07-26 16:54:08 +0000
committerGerald Combs <gerald@wireshark.org>2005-07-26 16:54:08 +0000
commitdb5add1cc3bed4683206f859ee20ee6eb5969ddf (patch)
tree8d8091f7744ce05f399f5fd2fc6c7e7f3847b959 /randpkt.c
parenta64a4043c3bfbde4f22782253d3ab5a64e416f98 (diff)
From Brice Augustin: Use the correct packet length in randpkt.
Build randpkt.exe by default under Windows. svn path=/trunk/; revision=15092
Diffstat (limited to 'randpkt.c')
-rw-r--r--randpkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/randpkt.c b/randpkt.c
index 15a3298184..47e4b59713 100644
--- a/randpkt.c
+++ b/randpkt.c
@@ -515,7 +515,7 @@ main(int argc, char **argv)
pkthdr.len = len_this_pkt;
pkthdr.ts.tv_sec = i; /* just for variety */
- for (j = example->sample_length; j < len_random; j++) {
+ for (j = example->sample_length; j < len_this_pkt; j++) {
/* Add format strings here and there */
if ((int) (100.0*rand()/(RAND_MAX+1.0)) < 3 && j < (len_random - 3)) {
memcpy(&buffer[j], "%s", 3);