98ca9ad812b65a55534d6149587cd56d3a4fe93d kent Wed Apr 17 09:45:28 2013 -0700 Fixed type of next pointer in cgiParsedVars. Ref #10621 diff --git src/inc/cheapcgi.h src/inc/cheapcgi.h index 8042b45..b8a5024 100644 --- src/inc/cheapcgi.h +++ src/inc/cheapcgi.h @@ -502,28 +502,28 @@ // Drop down a certain number of lines (may be fractional) char *commonCssStyles(); /* Returns a string of common CSS styles */ char *javaScriptLiteralEncode(char *inString); /* Use backslash escaping on newline * and quote chars, backslash and others. * Intended that the encoded string will be * put between quotes at a higher level and * then interpreted by Javascript. */ struct cgiParsedVars /* A parsed out cgi variable string */ { - struct tagsFromCgi *next; /* In case want to make a list of these. */ + struct cgiParsedVars *next; /* In case want to make a list of these. */ char *stringBuf; /* Holds strings inside vars. */ struct cgiVar *list; /* List of variables. */ struct hash *hash; /* Keyed by varName, value is just value, not cgiVar. */ }; struct cgiParsedVars *cgiParsedVarsNew(char *cgiString); /* Build structure containing parsed out cgiString */ void cgiParsedVarsFree(struct cgiParsedVars **pTags); /* Free up memory associated with cgiParsedVars */ #endif /* CHEAPCGI_H */