I've noticed a lot of my source files seem to get globbed up. Below is
an example:
/* from my system */
int maxchildren = MAXCHILDREN; /* Max no of concurrent PIDs */
int nflag = 0; /* Say without doing */
int64_t min_freespace = 0; /* Min filesys free space */
int64_t min_freefiles = 0; /* Min filesys free # files */
FILE *fin = NULL; /* Input file pointer */
char localmsglist[] = "stdout=all:notify=all:syslog=nerror,ferror";
char *remotemsglist = NULL;
char optchars[] = "A:a:bcd:DFf:hil:L:M:m:NnOo:p:P:qRrst:Vvwxy";
char *path_rdistd = _PATH_RDISTD;
char *path_remsh = NULL;
/* from cvs on the web */
int maxchildren = MAXCHILDREN; /* Max no of concurrent PIDs */
int nflag = 0; /* Say without doing */
int64_t min_freespace = 0; /* Min filesys free space */
int64_t min_freefiles = 0; /* Min filesys free # files */
FILE *fin = NULL; /* Input file pointer */
char localmsglist[] = "stdout=all:notify=all:syslog=nerror,ferror";
char *remotemsglist = NULL;
char optchars[] = "A:a:bcd:DFf:hil:L:M:m:NnOo:p:P:qRrst:Vvwxy";
char *path_rdistd = _PATH_RDISTD;
char *path_remsh = NULL;
What could cause this?
Thanks,
Edgar