Fixed the fix I did earlyer. (Move var declaration up in the function

to where it should be)  Darn SGI ;)

Kent
This commit is contained in:
Kent Mein 2004-03-30 14:41:08 +00:00
parent 137e82f0e6
commit 2b27a909f0

@ -320,7 +320,7 @@ void BLI_adddirstrings()
struct direntry * file;
struct tm *tm;
struct passwd *pwuser;
file = &files[0];
@ -355,7 +355,6 @@ void BLI_adddirstrings()
#ifdef WIN32
strcpy(files[num].owner,"user");
#else
struct passwd *pwuser;
pwuser = getpwuid(files[num].s.st_uid);
strcpy(files[num].owner, pwuser->pw_name);
#endif