diff options
author | John Polstra <jdp@FreeBSD.org> | 2000-01-29 06:57:13 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 2000-01-29 06:57:13 +0000 |
commit | 1693b265c101e9f168f753571b6b87b2618463c6 (patch) | |
tree | c823d75395e4f982489c15f438fa05bb736e9722 /net | |
parent | fe11e34f92f2134a8ddfe7261633708d67576eac (diff) |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/pptpclient/files/patch-af | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/pptpclient/files/patch-af b/net/pptpclient/files/patch-af new file mode 100644 index 000000000000..e47e99662601 --- /dev/null +++ b/net/pptpclient/files/patch-af @@ -0,0 +1,11 @@ +--- pptp_ctrl.c~ Thu Feb 19 07:42:14 1998 ++++ pptp_ctrl.c Sun Nov 14 11:12:03 1999 +@@ -513,7 +513,7 @@ + close_reason = PPTP_STOP_PROTOCOL; + goto pptp_conn_close; + } +- if (ntoh8(packet->result_code)!=1) { /* some problem with start */ ++ if (ntoh8(packet->result_code)!=1 && ntoh8(packet->result_code)!=0) { /* some problem with start */ + /* if result_code == 5, we might fall back to different version */ + if (conn->callback!=NULL) conn->callback(conn, CONN_OPEN_FAIL); + close_reason = PPTP_STOP_PROTOCOL; |