Format code

This commit is contained in:
bel2125 2018-08-21 01:16:59 +02:00
parent 3dfd5d58a9
commit ff061c96b0
3 changed files with 18 additions and 2 deletions

View File

@ -523,10 +523,12 @@ CivetServer::getParam(struct mg_connection *conn,
bool get_param_success = false;
if (!get_param_success && formParams != NULL) {
get_param_success = getParam(formParams, strlen(formParams), name, dst, occurrence);
get_param_success =
getParam(formParams, strlen(formParams), name, dst, occurrence);
}
if (!get_param_success && queryString != NULL) {
get_param_success = getParam(queryString, strlen(formParams), name, dst, occurrence);
get_param_success =
getParam(queryString, strlen(formParams), name, dst, occurrence);
}
return get_param_success;

View File

@ -0,0 +1,9 @@
#!/bin/sh
printf "Content-Type: text/plain\r\n"
printf "\r\n"
echo "This is a shell script called by CGI:"
echo
set

View File

@ -0,0 +1,5 @@
#!/usr/bin/python
import os
print("Content-Type: text/plain \n\n")
print("This is from python")