diff options
author | horchi <vdr@jwendel.de> | 2020-07-27 15:44:12 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2020-07-27 15:44:12 +0200 |
commit | 8d38dfabb114d8a93c34ce1258d97e389f5645d9 (patch) | |
tree | 25cf5fc66b907d86890daaa6121c2803c941982d /webauth.c | |
parent | 528e74b41c1ec5012554decc3e88b787ceb2fa95 (diff) | |
download | vdr-epg-daemon-8d38dfabb114d8a93c34ce1258d97e389f5645d9.tar.gz vdr-epg-daemon-8d38dfabb114d8a93c34ce1258d97e389f5645d9.tar.bz2 |
2020-07-27: version 1.1.161 (Alexander Grothe, horchi)\n - change: Porting to new libmicrohttpd\n\n1.1.161
Diffstat (limited to 'webauth.c')
-rw-r--r-- | webauth.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,9 +54,9 @@ char* string2base64(const char* message) // Ask For Authentication //*************************************************************************** -int cEpgHttpd::askForAuthentication(struct MHD_Connection* connection, const char* realm) +MHD_Result cEpgHttpd::askForAuthentication(struct MHD_Connection* connection, const char* realm) { - int status; + MHD_Result status; struct MHD_Response* response; char* headervalue = 0; |