https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200988

            Bug ID: 200988
           Summary: sys/mips/nlm/cms.c:205: bad if statement ?
           Product: Base System
           Version: 10.1-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: misc
          Assignee: freebsd-bugs@FreeBSD.org
          Reporter: dcb...@hotmail.com

sys/mips/nlm/cms.c:205]: (warning) Logical conjunction always evaluates to
false: srcid < 0 && srcid >= 1024.

    if (srcid < 0 && srcid >= 1024) {

Maybe

    if (srcid < 0 || srcid >= 1024) {

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to