X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=server%2Ffastcgi.c;fp=server%2Ffastcgi.c;h=600632266c4d244428e8cdb04fea60bf82882841;hb=b7a1e44bd6c984d061b0b88a8b00cf24b854a1df;hp=9ff3accf3013cdcc89c25e481978931a919ae1c1;hpb=7deca6b4e089e76e279ae84c0aa25728d91e8fd9;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.c b/server/fastcgi.c index 9ff3acc..6006322 100644 --- a/server/fastcgi.c +++ b/server/fastcgi.c @@ -164,7 +164,6 @@ bool FCGI_LockControl(FCGIContext *context, const char * user_name, UserType use * the key) has control or not. If validated, the context control_timestamp is * updated. * @param context The context to work in - * @param key The control key to be validated. * @return TRUE if authorized, FALSE if not. */ bool FCGI_HasControl(FCGIContext *context) @@ -386,7 +385,6 @@ void FCGI_BeginJSON(FCGIContext *context, StatusCodes status_code) * Generic accept response in JSON format. * @param context The context to work in * @param description A short description. - * @param cookie Optional. If given, the cookie field is set to that value. */ void FCGI_AcceptJSON(FCGIContext *context, const char *description) { @@ -510,7 +508,7 @@ void FCGI_WriteBinary(void * data, size_t size, size_t num_elem) /** * Escapes a string so it can be used safely. * Currently escapes to ensure the validity for use as a JSON string - * Does not support unicode specifiers in the form of \uXXXX. + * Does not support unicode specifiers in the form of \\uXXXX. * @param buf The string to be escaped * @return The escaped string (return value == buf) */