This is the third in a series of patches designed to remove warnings from the compilation of Perl on FreeBSD-CURRENT, last updated Jun 19, 2001. Applying this patch removes a compilation warning from taint.c:18 - changing the below define stops the warning. All tests passed. Note - I know this file is generated, and in fact I had to fudge timestamps to keep it from regenerating. I'd like to see the proper patch for this, as I got lost in a maze of twisty Configure mazes, all alike. R. --- config.h~ Sat Jul 28 23:28:58 2001 +++ config.h Sat Jul 28 23:28:25 2001 @@ -3105,7 +3105,7 @@ /* Uid_t_f: * This symbol defines the format string used for printing a Uid_t. */ -#define Uid_t_f "lu" /**/ +#define Uid_t_f "ul" /**/ /* Uid_t_sign: * This symbol holds the signedess of a Uid_t.Thread Next