getsubopt: don't include leading = in value string

getsubopt incorrectly returns the delimiting = in the value string,
this patch fixes it by increasing the pointer position by one.

Signed-off-by: Steven Barth <cyrus@openwrt.org>
diff --git a/src/misc/getsubopt.c b/src/misc/getsubopt.c
index dac9bf9..53ee957 100644
--- a/src/misc/getsubopt.c
+++ b/src/misc/getsubopt.c
@@ -15,7 +15,7 @@
 		size_t l = strlen(keys[i]);
 		if (strncmp(keys[i], s, l)) continue;
 		if (s[l] == '=')
-			*val = s + l;
+			*val = s + l + 1;
 		else if (s[l]) continue;
 		return i;
 	}