(rk_read_env_file): move assignment to later to make pre c99 compiler happy

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15194 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-05-20 07:50:56 +00:00
parent 21824d94f6
commit 936247b01e

View File

@@ -66,13 +66,14 @@ static int
rk_read_env_file(FILE *F, char ***env, int *assigned)
{
int index = 0;
*assigned = 0;
int i;
char **l;
char buf[BUFSIZ], *p, *r;
char **tmp;
int ret = 0;
*assigned = 0;
for(index = 0; *env != NULL && (*env)[index] != NULL; index++);
l = *env;