Skip to content

Commit

Permalink
larger buffers
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Apr 26, 2021
1 parent 3e6b7ef commit 4ce08a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion address6.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void help(char *prg) {
}

int main(int argc, char *argv[]) {
unsigned char *ptr, *dst6, ipv4[16] = "", ipv6[40], *prefix;
unsigned char *ptr, *dst6, ipv4[16] = "", ipv6[64], *prefix;
int i, j, k, found = 0;
struct in_addr in;

Expand Down
2 changes: 1 addition & 1 deletion dnssecwalk.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ int main(int argc, char **argv) {
struct addrinfo hints, *res, *p;
struct sockaddr_in6 *ipv6, *q;
struct sockaddr_in * ipv4, *q4;
char ipv4str[16], ipv6str[40];
char ipv4str[16], ipv6str[64];
void * addr, *addr4;

setvbuf(stdout, NULL, _IONBF, 0);
Expand Down

0 comments on commit 4ce08a8

Please sign in to comment.