From b978d17ca0780f1c594405d11c264f8d6a69e7e9 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sun, 6 Nov 2016 12:54:26 +0100 Subject: [PATCH] PPP, IPCP: remove obvious FIXME No-op. This is now unused code and it is pretty self explanatory what int_option do; it checks that passed parameter is an unsigned integer. --- src/netif/ppp/ipcp.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/netif/ppp/ipcp.c b/src/netif/ppp/ipcp.c index 5d859299..29fb188c 100644 --- a/src/netif/ppp/ipcp.c +++ b/src/netif/ppp/ipcp.c @@ -350,11 +350,8 @@ setvjslots(argv) { int value; -/* FIXME: found what int_option() did */ -#if PPP_OPTIONS if (!int_option(*argv, &value)) return 0; -#endif /* PPP_OPTIONS */ if (value < 2 || value > 16) { option_error("vj-max-slots value must be between 2 and 16");