diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-03 15:47:51 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-03 15:47:51 +0000 |
commit | 5c11934fd65fc428391e66b3f1a2a7080c69612e (patch) | |
tree | 619ed9c8d3cabc61c75a242505829c4243087d72 /russian/cyrproxy | |
parent | f7c1acffb9ee35dad794d940e61e92ea229bec14 (diff) | |
download | ports-5c11934fd65fc428391e66b3f1a2a7080c69612e.tar.gz ports-5c11934fd65fc428391e66b3f1a2a7080c69612e.zip |
Fix build on -CURRENT (gcc-3.x)
Notes
Notes:
svn path=/head/; revision=88446
Diffstat (limited to 'russian/cyrproxy')
-rw-r--r-- | russian/cyrproxy/files/patch-readconf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/russian/cyrproxy/files/patch-readconf.c b/russian/cyrproxy/files/patch-readconf.c new file mode 100644 index 000000000000..e23b0a9f152f --- /dev/null +++ b/russian/cyrproxy/files/patch-readconf.c @@ -0,0 +1,11 @@ +--- readconf.c.orig Wed Sep 3 18:51:28 2003 ++++ readconf.c Wed Sep 3 18:51:40 2003 +@@ -648,7 +648,7 @@ + retval=NULL; \ + while(list!=NULL) \ + { \ +- if(list->##fieldn == compval) \ ++ if((list->##fieldn) == compval) \ + retval=list; \ + list=list->chain; \ + } \ |