1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/net/nstreams/files/patch-aa
2001-01-05 22:38:09 +00:00

27 lines
729 B
Plaintext

--- src/nstreams.c Thu Nov 11 22:13:14 1999
+++ src/nstreams.c Fri Dec 29 07:04:41 2000
@@ -179,6 +179,7 @@
char * output_name = NULL;
+ bzero(cache, sizeof(struct cache));
parser = parse_tcpdump_line;
--- src/output.c Thu Nov 11 22:13:15 1999
+++ src/output.c Fri Dec 29 07:20:51 2000
@@ -122,11 +122,11 @@
else {
ret->sports = malloc(10);
sprintf(ret->sports, "%d", ret->sport);
- realloc(ret->sports, strlen(ret->sports)+1);
+ ret->sports = realloc(ret->sports, strlen(ret->sports)+1);
ret->dports = malloc(10);
sprintf(ret->dports, "%d", ret->dport);
- realloc(ret->dports, strlen(ret->dports)+1);
+ ret->dports = realloc(ret->dports, strlen(ret->dports)+1);
}
ret->show_net = shownet;