]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_getsubopt.c
Simplify: write HTTP 303 redirects with relative locations.
[mandoc.git] / compat_getsubopt.c
index 3a4a7d4ae350683872dde0832b1deb9e33d531af..880f2f789d4aaccbb2f239caf25b84f430d8eaa3 100644 (file)
@@ -6,6 +6,7 @@ int dummy;
 
 #else
 
+/*     $Id: compat_getsubopt.c,v 1.5 2014/08/17 20:53:50 schwarze Exp $        */
 /*     $OpenBSD: getsubopt.c,v 1.4 2005/08/08 08:05:36 espie Exp $     */
 
 /*-
@@ -41,18 +42,11 @@ int dummy;
 #include <stdlib.h>
 #include <string.h>
 
-/*
- * The SVID interface to getsubopt provides no way of figuring out which
- * part of the suboptions list wasn't matched.  This makes error messages
- * tricky...  The extern variable suboptarg is a pointer to the token
- * which didn't match.
- */
-char *suboptarg;
-
 int
 getsubopt(char **optionp, char * const *tokens, char **valuep)
 {
        int cnt;
+       char *suboptarg;
        char *p;
 
        suboptarg = *valuep = NULL;