diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-11-23 08:39:19 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-11-23 08:39:19 +0000 |
commit | 0545cb350627ff6c8d154cb80ec569eb0d9ae507 (patch) | |
tree | f9d39b6d6f1c9353c2fd43063f4092e0729c0ae8 /net-mgmt/p5-Cflow/files | |
parent | c114ed55bf2a34c94be0e19ec0463be919e1ccee (diff) | |
download | ports-0545cb350627ff6c8d154cb80ec569eb0d9ae507.tar.gz ports-0545cb350627ff6c8d154cb80ec569eb0d9ae507.zip |
fix typo ( <= instead of == )
Submitted by: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
Notes
Notes:
svn path=/head/; revision=122208
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; |