From: mdw Date: Thu, 11 Nov 1999 00:59:08 +0000 (+0000) Subject: A bit of reformatting. Initialize the uid and gid correctly. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/178220b35f2fd3fbb8a4ac2268277e5fcdd7f889 A bit of reformatting. Initialize the uid and gid correctly. --- diff --git a/noise.c b/noise.c index 094447c..1429626 100644 --- a/noise.c +++ b/noise.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: noise.c,v 1.1 1999/09/03 08:41:12 mdw Exp $ + * $Id: noise.c,v 1.2 1999/11/11 00:59:08 mdw Exp $ * * Acquisition of environmental noise (Unix specific) * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: noise.c,v $ + * Revision 1.2 1999/11/11 00:59:08 mdw + * A bit of reformatting. Initialize the uid and gid correctly. + * * Revision 1.1 1999/09/03 08:41:12 mdw * Initial import. * @@ -37,9 +40,7 @@ /*----- Header files ------------------------------------------------------*/ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "config.h" #include #include @@ -81,8 +82,8 @@ static unsigned long noise_diff; /* Last first order difference */ /* --- Setuid program handling --- */ -static uid_t noise_uid; /* Uid to set to spawn processes */ -static gid_t noise_gid; /* Gid to set to spawn processes */ +static uid_t noise_uid = NOISE_NOSETUID; /* Uid to set to spawn processes */ +static gid_t noise_gid = NOISE_NOSETGID; /* Gid to set to spawn processes */ /*----- Main code ---------------------------------------------------------*/