diff options
| author | Guy Harris <guy@alum.mit.edu> | 2012-06-09 12:16:41 -0700 |
|---|---|---|
| committer | Guy Harris <guy@alum.mit.edu> | 2012-06-09 12:18:59 -0700 |
| commit | baff59beb6b067759bfde22d88a5a1c2cff62d05 (patch) | |
| tree | e0eb2ec00f909b9aee639bae2c2993d9229b75e1 | |
| parent | 32c0d7b91aaab414a155e6883518b93680c5894c (diff) | |
| download | tcpdump-baff59beb6b067759bfde22d88a5a1c2cff62d05.tar.gz | |
Fix "no IPv6" code path.
| -rw-r--r-- | print-bgp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-bgp.c b/print-bgp.c index dc16d914..850ce050 100644 --- a/print-bgp.c +++ b/print-bgp.c @@ -2406,7 +2406,7 @@ bgp_update_print(const u_char *dat, int length) break; } else if (wpfx == -2) goto trunc; - } else if (wpfx == -3) + else if (wpfx == -3) goto trunc; /* bytes left, but not enough */ else { printf("\n\t %s", buf); |
