Skip to content

Commit

Permalink
db_redis: Missing format fixes
Browse files Browse the repository at this point in the history
Removing spaces from line ends.
  • Loading branch information
joelbax authored and miconda committed Jun 20, 2023
1 parent ba080b1 commit 077980a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/db_redis/redis_connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ int db_redis_connect(km_redis_con_t *con)
LM_ERR("Unable to create Redis SSL Context.\n");
goto err;
}
}
}
#endif

host_end = strstr(host_begin, "/");
Expand Down Expand Up @@ -214,7 +214,7 @@ int db_redis_connect(km_redis_con_t *con)
LM_ERR("Unable to create Redis SSL Context.\n");
goto err;
}
}
}
#endif

con->con = redisConnectWithTimeout(con->id->host, con->id->port, tv);
Expand Down

0 comments on commit 077980a

Please sign in to comment.