X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=main.c;h=679a7970d2d61f44b1249247147e5a3bd4727d66;hb=98a31b4c67cc31ef5c46ae3587a20838ae1bd024;hp=8342918c92b996bb2708e02ab9be88e482306727;hpb=f997801a16ce4a8530cb30cddebfe6243cb3502d;p=apps%2Fmadmutt.git diff --git a/main.c b/main.c index 8342918..679a797 100644 --- a/main.c +++ b/main.c @@ -70,10 +70,11 @@ Copyright (C) 1998-2002 Werner Koch \n\ Copyright (C) 1999-2002 Brendan Cully \n\ Copyright (C) 1999-2002 Tommi Komulainen \n\ Copyright (C) 2000-2002 Edmund Grimley Evans \n\n\ -Parts were written/modified by:\n\ -Andreas Krennmair \n\ -Nico Golde \n\ -Rocco Rutte \n\ +Copyright (C) 2005:\n\ + Parts were written/modified by:\n\ + Andreas Krennmair \n\ + Nico Golde \n\ + Rocco Rutte \n\ \n\ Lots of others not mentioned here contributed lots of code,\n\ fixes, and suggestions.\n\ @@ -500,11 +501,16 @@ int main (int argc, char **argv) int version = 0; int i; int explicit_folder = 0; + long sek; extern char *optarg; extern int optind; + /* initialize random number for tmp file creation */ + time (&sek); + srand (sek); + /* sanity check against stupid administrators */ - + if (getegid () != getgid ()) { fprintf (stderr, "%s: I don't want to run with privileges!\n", argv[0]); exit (1);