summaryrefslogtreecommitdiffstats
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/eurephiadb-driver_template.c17
-rw-r--r--database/sqlite/eurephiadb-sqlite.c15
2 files changed, 5 insertions, 27 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);
diff --git a/database/sqlite/eurephiadb-sqlite.c b/database/sqlite/eurephiadb-sqlite.c
index 2a0b9be..644815f 100644
--- a/database/sqlite/eurephiadb-sqlite.c
+++ b/database/sqlite/eurephiadb-sqlite.c
@@ -205,19 +205,8 @@ int eDBauth_TLS(eurephiaCTX *ctx, const char *org, const char *cname, const char
blid = strdup_nullsafe(sqlite_get_value(res, 0, 1));
sqlite_free_results(res);
- // 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);