summaryrefslogtreecommitdiffstats
path: root/database/eurephiadb-driver_template.c
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2008-10-08 07:55:39 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2008-10-08 07:55:39 +0200
commitf6a1018fa8e0dfd57ea3b4a9e7024a97cb7a2d11 (patch)
treeb1159a9aefbdc8d2dbbc0a10c598eb234734c438 /database/eurephiadb-driver_template.c
parent63b87d8d9256bc1d6fd3c9040f4fd3622991045e (diff)
parent62836d4745be7e72e638781bd2624aca1266e7fe (diff)
downloadeurephia-0.9_beta.tar.gz
eurephia-0.9_beta.tar.xz
eurephia-0.9_beta.zip
Merge branch 'master' into cmakev0.9_beta
Diffstat (limited to 'database/eurephiadb-driver_template.c')
-rw-r--r--database/eurephiadb-driver_template.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/database/eurephiadb-driver_template.c b/database/eurephiadb-driver_template.c
index fc67510..d237c00 100644
--- a/database/eurephiadb-driver_template.c
+++ b/database/eurephiadb-driver_template.c
@@ -222,24 +222,13 @@ int eDBauth_TLS(eurephiaCTX *ctx, const char *org, const char *cname, const char
org, cname, email, depth, digest
*/
- if( /*IF WE GOT A RESULT */ ) {
+ if( /* IF WE GOT A RESULT */ ) {
certid = atoi_nullsafe(/* GET cert.certid FROM SQL RESULT */);
blid = atoi_nullsafe(/* GET blid FROM SQL RESULT */);
/* FREE SQL RESULT */
- // Check if we found certificate to be blacklisted or not. blid == NULL when NOT blacklisted
- if( blid == NULL ) {
- if( certid > 0 ) {
- eurephia_log(ctx, LOG_INFO, 0,
- "Found certid %i for user: %s/%s/%s",
- certid, org, cname, email);
- } else {
- eurephia_log(ctx, LOG_INFO, 1,
- "Unknown certificate for: %s/%s/%s (depth %s, digest: %s)",
- org, cname, email, depth, digest);
- }
- // Certificate is okay, certid contains the certificate ID
- } else {
+ // Check if the certificate is blacklisted or not. blid != NULL when blacklisted
+ if( blid != NULL ) {
// If the certificate or IP is blacklisted, update status and deny access.
eurephia_log(ctx, LOG_WARNING, 0,
"Attempt with BLACKLISTED certificate (certid %i)", certid);