The & is not needed. With the & you're passing a char ** instead of a char*, and will have a bad memory error of some sort.From: Scott McClelland <[EMAIL PROTECTED]>
Change (off the top of my head, without testing): char * username=getenv("USER"); fprintf(log_file, "By user %s \n" &username, );
Gabe
-- [email protected] http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list
