Renamed cw_put_msg to cw_assemble_message

This commit is contained in:
2022-08-10 13:16:09 +02:00
parent 9e54e46e45
commit c5e1abb842
10 changed files with 156 additions and 160 deletions

View File

@ -173,7 +173,7 @@ int cw_send_request(struct cw_Conn *conn,int msg_id)
int rc;
char sock_buf[SOCK_ADDR_BUFSIZE];
cw_init_request(conn, msg_id);
if ( cw_put_msg(conn, conn->req_buffer) == -1 ){
if ( cw_assemble_message(conn, conn->req_buffer) == -1 ){
errno=ENOMSG;
return -1;
}