summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Fedoryshchenko <denys.f@collabora.com>2024-11-28 20:56:05 +0200
committerGitHub <noreply@github.com>2024-11-28 20:56:05 +0200
commitd2cdaea246d3d97eb50dc7516318d6862351f34c (patch)
treefbc61e1bd4bb39ece2085f21c59e2cee585c5f60
parent1aec9236655c14f419c41939093d220a8496ccff (diff)
parentb6500a8df22c94fcf8d5dc583d85be6ddc5d51ec (diff)
downloadaccel-ppp-d2cdaea246d3d97eb50dc7516318d6862351f34c.tar.gz
accel-ppp-d2cdaea246d3d97eb50dc7516318d6862351f34c.zip
Merge pull request #216 from grandnew/master
Fix post_msg implementation bug
-rw-r--r--accel-pppd/ctrl/pptp/pptp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/pptp/pptp.c b/accel-pppd/ctrl/pptp/pptp.c
index cc5720f7..24984db8 100644
--- a/accel-pppd/ctrl/pptp/pptp.c
+++ b/accel-pppd/ctrl/pptp/pptp.c
@@ -142,8 +142,8 @@ again:
if (errno != EPIPE) {
if (conf_verbose)
log_ppp_info2("pptp: write: %s\n", strerror(errno));
- return -1;
}
+ return -1;
}
}