CVSROOT:        /cvs
Module name:    src
Changes by:     k...@cvs.openbsd.org    2017/07/14 10:21:03

Modified files:
        sbin/dhclient  : bpf.c clparse.c conflex.c dhclient.c dispatch.c 
                         kroute.c options.c packet.c parse.c privsep.c 

Log message:
Replace remaining "!var" expressions with
"<var> == 0", "!(<var> & FLAG)" with
"(<var> & FLAG) == 0", "!<func()>"
with "<func()> == 0" and "!<define>" with
"<define> == 0". And the positive cases
as well.

A few stray == NULL and != NULL as well.

Reply via email to