Index: trunk/doc-rnd/hacking/renames =================================================================== --- trunk/doc-rnd/hacking/renames (revision 4853) +++ trunk/doc-rnd/hacking/renames (revision 4854) @@ -230,3 +230,4 @@ tempfile_name_new -> pcb_tempfile_name_new tempfile_unlink -> pcb_tempfile_unlink lrealpath -> pcb_lrealpath +get_user_name -> pcb_get_user_name Index: trunk/src/build_run.c =================================================================== --- trunk/src/build_run.c (revision 4853) +++ trunk/src/build_run.c (revision 4854) @@ -140,6 +140,6 @@ if (conf_core.design.fab_author && conf_core.design.fab_author[0]) return conf_core.design.fab_author; else - return get_user_name(); + return pcb_get_user_name(); } Index: trunk/src/compat_misc.c =================================================================== --- trunk/src/compat_misc.c (revision 4853) +++ trunk/src/compat_misc.c (revision 4854) @@ -48,7 +48,7 @@ } #endif -const char *get_user_name(void) +const char *pcb_get_user_name(void) { #ifdef HAVE_GETPWUID static struct passwd *pwentry; Index: trunk/src/compat_misc.h =================================================================== --- trunk/src/compat_misc.h (revision 4853) +++ trunk/src/compat_misc.h (revision 4854) @@ -29,7 +29,7 @@ long pcb_rand(void); -const char *get_user_name(void); +const char *pcb_get_user_name(void); int pcb_getpid(void); char *pcb_strndup(const char *s, int len); Index: trunk/src_plugins/export_gerber/gerber.c =================================================================== --- trunk/src_plugins/export_gerber/gerber.c (revision 4853) +++ trunk/src_plugins/export_gerber/gerber.c (revision 4854) @@ -719,7 +719,7 @@ fprintf(f, "G04 CreationDate: %s *\r\n", utcTime); /* ID the user. */ - fprintf(f, "G04 For: %s *\r\n", get_user_name()); + fprintf(f, "G04 For: %s *\r\n", pcb_get_user_name()); fprintf(f, "G04 Format: Gerber/RS-274X *\r\n"); pcb_fprintf(f, "G04 PCB-Dimensions: %.0mc %.0mc *\r\n", PCB->MaxWidth, PCB->MaxHeight);