using a static initializer. (Needed for Linux/glibc 2.1)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11361
dc483132-0cff-0310-8789-
dd5450dbe970
+1999-04-14 <tytso@rsts-11.mit.edu>
+
+ * t_imp_name.c: Initialize display_file variable in main(),
+ instead of using a static initializer. (Needed for
+ Linux/glibc 2.1)
+
1998-11-13 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in: Set the myfulldir and mydir variables (which are
static void display_buffer();
static int test_import_name();
-FILE *display_file = stdout;
+FILE *display_file;
int main(argc, argv)
int argc;
char **argv;
{
int retval;
-
+
+ display_file = stdout;
+
retval = test_import_name("host@dcl.mit.edu");
return retval;