Skip to content

Commit

Permalink
Merge pull request accel-ppp#216 from grandnew/master
Browse files Browse the repository at this point in the history
Fix post_msg implementation bug
  • Loading branch information
nuclearcat authored Nov 28, 2024
2 parents 1aec923 + b6500a8 commit d2cdaea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accel-pppd/ctrl/pptp/pptp.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ static int post_msg(struct pptp_conn_t *conn, void *buf, int size)
if (errno != EPIPE) {
if (conf_verbose)
log_ppp_info2("pptp: write: %s\n", strerror(errno));
return -1;
}
return -1;
}
}

Expand Down

0 comments on commit d2cdaea

Please sign in to comment.