X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/ee412cbd5c0667742a128fb4e1c89801528a9a48..fc8e02dc2074ce73276afc6f48919b9ecb32a409:/uip/send.c?ds=sidebyside diff --git a/uip/send.c b/uip/send.c index d3fc4b1c..c12908f4 100644 --- a/uip/send.c +++ b/uip/send.c @@ -69,7 +69,6 @@ X("nomsgid", 0, NMSGDSW) \ X("push", 0, PUSHSW) \ X("nopush", 0, NPUSHSW) \ - X("split seconds", 0, SPLITSW) \ X("unique", -6, UNIQSW) \ X("nounique", -8, NUNIQSW) \ X("verbose", 0, VERBSW) \ @@ -124,7 +123,6 @@ extern int debugsw; /* from sendsbr.c */ extern bool forwsw; extern int inplace; extern bool pushsw; -extern int splitsw; extern bool unique; extern bool verbsw; @@ -219,11 +217,6 @@ main (int argc, char **argv) pushsw = false; continue; - case SPLITSW: - if (!(cp = *argp++) || sscanf (cp, "%d", &splitsw) != 1) - die("missing argument to %s", argp[-2]); - continue; - case UNIQSW: unique = true; continue;