Fixed init_ssl() name to init_ssl_to_server()

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2018-11-03 15:19:08 +01:00
parent 2c3f29db44
commit 78dd67613b
5 changed files with 5 additions and 5 deletions

View File

@ -96,7 +96,7 @@ int connect_to_imap_server(struct data *data){
data->import->cap_uidplus = 0; data->import->cap_uidplus = 0;
if(data->net->use_ssl == 1){ if(data->net->use_ssl == 1){
init_ssl(data); init_ssl_to_server(data);
} }

View File

@ -730,7 +730,7 @@ int read_one_line(char *s, int c, char *buf, int buflen, int *rc){
} }
int init_ssl(struct data *data){ int init_ssl_to_server(struct data *data){
int n; int n;
X509* server_cert; X509* server_cert;
char *str; char *str;

View File

@ -51,7 +51,7 @@ int can_i_write_directory(char *dir);
void move_email(struct smtp_session *session); void move_email(struct smtp_session *session);
int read_one_line(char *s, int c, char *buf, int buflen, int *rc); int read_one_line(char *s, int c, char *buf, int buflen, int *rc);
int init_ssl(struct data *data); int init_ssl_to_server(struct data *data);
#ifndef _GNU_SOURCE #ifndef _GNU_SOURCE
char *strcasestr(const char *s, const char *find); char *strcasestr(const char *s, const char *find);

View File

@ -37,7 +37,7 @@ int connect_to_pop3_server(struct data *data){
char buf[MAXBUFSIZE]; char buf[MAXBUFSIZE];
if(data->net->use_ssl == 1){ if(data->net->use_ssl == 1){
init_ssl(data); init_ssl_to_server(data);
} }
recvtimeoutssl(data->net, buf, sizeof(buf)); recvtimeoutssl(data->net, buf, sizeof(buf));

View File

@ -241,7 +241,7 @@ static void test_smtp_commands_starttls(char *server, int port, struct data *dat
send_smtp_command(data->net, "STARTTLS\r\n", recvbuf, sizeof(recvbuf)-1); send_smtp_command(data->net, "STARTTLS\r\n", recvbuf, sizeof(recvbuf)-1);
assert(strncmp(recvbuf, "220 ", 4) == 0 && "STARTTLS"); assert(strncmp(recvbuf, "220 ", 4) == 0 && "STARTTLS");
init_ssl(data); init_ssl_to_server(data);
data->net->use_ssl = 1; data->net->use_ssl = 1;
send_helo_command(data->net); send_helo_command(data->net);