| Submitter | Mike Frysinger |
|---|---|
| Date | Aug. 1, 2012, 3:45 p.m. |
| Message ID | <1343835928-21541-3-git-send-email-vapier@gentoo.org> |
| Download | mbox | patch |
| Permalink | /patch/174474/ |
| State | Not Applicable |
| Delegated to: | David Miller |
| Headers | show |
Comments
Patch
diff --git a/tracepath.c b/tracepath.c index 0a14b1b..90e1b28 100644 --- a/tracepath.c +++ b/tracepath.c @@ -306,7 +306,7 @@ main(int argc, char **argv) break; case 'l': if ((mtu = atoi(optarg)) <= overhead) { - fprintf(stderr, "Error: length must be >= %d\n", overhead); + fprintf(stderr, "Error: length must be > %d\n", overhead); exit(1); } break;