diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-11-23 16:39:19 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-11-23 16:39:19 +0800 |
commit | a50c220ae793c3d53724aa8746adcd9c9ceadd39 (patch) | |
tree | 1abb82e8c6bd37f5543f3d568e53266b72993572 /net-mgmt/p5-Cflow/files | |
parent | 0cf68658634df6ddf044bce9c5c5fb37d68c7bd4 (diff) | |
download | freebsd-ports-gnome-a50c220ae793c3d53724aa8746adcd9c9ceadd39.tar.gz freebsd-ports-gnome-a50c220ae793c3d53724aa8746adcd9c9ceadd39.tar.zst freebsd-ports-gnome-a50c220ae793c3d53724aa8746adcd9c9ceadd39.zip |
fix typo ( <= instead of == )
Submitted by: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
Diffstat (limited to 'net-mgmt/p5-Cflow/files')
-rw-r--r-- | net-mgmt/p5-Cflow/files/patch-Cflow.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-mgmt/p5-Cflow/files/patch-Cflow.xs b/net-mgmt/p5-Cflow/files/patch-Cflow.xs index bb3915bf991d..5a6aeab146f1 100644 --- a/net-mgmt/p5-Cflow/files/patch-Cflow.xs +++ b/net-mgmt/p5-Cflow/files/patch-Cflow.xs @@ -5,7 +5,7 @@ # ifdef OSU /* [ */ struct fttime first, last; - if ((FILE *)0 == fp) { -+ if (0 == ftio_check_generic(&fs)) { ++ if (0 <= ftio_check_generic(&fs)) { fdata = ftio_read(&fs); if ((void *)0 == fdata) { break; |