diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2007-04-02 13:50:21 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2007-04-02 13:50:21 +0000 |
commit | eef24d48e99f234e9cd99e343af20b0757295838 (patch) | |
tree | 032313ad0271793f3fdc86c7c31decdb6cb428e8 /devel/libpdel | |
parent | 00c08d348721061a897787557ba94d07921c5e79 (diff) | |
download | ports-eef24d48e99f234e9cd99e343af20b0757295838.tar.gz ports-eef24d48e99f234e9cd99e343af20b0757295838.zip |
Notes
Diffstat (limited to 'devel/libpdel')
-rw-r--r-- | devel/libpdel/files/patch-ppp_auth_radius.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/libpdel/files/patch-ppp_auth_radius.c b/devel/libpdel/files/patch-ppp_auth_radius.c index 982007326c13..2d32809afa46 100644 --- a/devel/libpdel/files/patch-ppp_auth_radius.c +++ b/devel/libpdel/files/patch-ppp_auth_radius.c @@ -9,3 +9,14 @@ #include <poll.h> #include <radlib.h> #include <radlib_vs.h> +--- ppp/ppp_auth_radius.c.orig Sun Apr 1 23:13:10 2007 ++++ ppp/ppp_auth_radius.c Sun Apr 1 23:16:01 2007 +@@ -462,7 +462,7 @@ + + /* Compensate for broken servers that leave out the ID byte */ + if (len > 0 && (len < 3 || ((const char *)data)[1] != '=')) { +- ((const char *)data)++; ++ data = (const char *)data + 1; + len--; + } + |