Bugs in shape

Lawrence V. Cipriani lvc at cbnews.ATT.COM
Tue Jun 20 08:40:47 AEST 1989


I tried to contact the author of shape at least 5 different ways and got bounced
mail every time.  Hoping he'll seem them, here are two possible bugs I found in
shape.

src/shape/attr.c: comparison takes precedence over assignment near line 640
    if ((err = af_setgkey(set, cur_pos, &cur_key) == -1))
should perhaps be:
    if ((err = af_setgkey(set, cur_pos, &cur_key)) == -1)

src/vc/vadm_symname.c: comparison takes precedence over assignment near line 369
    if ((rc=af_find (&warrant, &hits) > 0)) { 
should perhaps be:
    if ((rc=af_find (&warrant, &hits)) > 0) { 
-- 
Larry Cipriani, att!cbnews!lvc or lvc at cbnews.att.com



More information about the Comp.sources.bugs mailing list