Index: usr.bin/uuencode/uuencode.c =================================================================== --- usr.bin/uuencode/uuencode.c +++ usr.bin/uuencode/uuencode.c @@ -81,7 +81,6 @@ int base64; int ch; char *outfile; - cap_rights_t out_rights; base64 = 0; outfile = NULL; @@ -132,7 +131,7 @@ if (output == NULL) err(1, "unable to open %s for output", outfile); - if (caph_limit_stream(fileno(output), CAP_WRITE) != 0) + if (caph_limit_stream(fileno(output), CAPH_WRITE) != 0) err(1, "unable to limit rights for %s", outfile); } else output = stdout;