removed pointless use of non-reproducible macros

This commit is contained in:
psyc://loupsycedyglgamf.onion/~lynX 2016-08-10 15:44:54 +00:00
parent 8bd51f2a48
commit daa2f57b71
3 changed files with 6 additions and 4 deletions

View File

@ -1702,6 +1702,7 @@ version (void)
fputs(drivertag(), stdout);
#ifdef NOT_REPRODUCIBLE
fputs("; " RELEASE_DATE
"\nCompiled: " __DATE__
#ifdef __TIME__
@ -1709,6 +1710,7 @@ version (void)
#endif
"\n"
, stdout);
#endif
} /* version() */
/*-------------------------------------------------------------------------*/

View File

@ -1597,8 +1597,8 @@ main (int argc, char **argv)
/* Print information about this daemon to help debugging */
{
fprintf(stderr, "%s Amylaar ERQ %s: Path '%s', debuglevel %d\n"
, time_stamp(), __DATE__, argv[0], ERQ_DEBUG
fprintf(stderr, "%s psyclpc external request daemon: Path '%s', debuglevel %d\n"
, time_stamp(), argv[0], ERQ_DEBUG
);
}

View File

@ -152,8 +152,8 @@ main(int argc, char *argv[])
/* Print information about this daemon to help debugging */
{
fprintf(stderr, "%s XERQ %s: Path '%s', debuglevel %d\n"
, time_stamp(), __DATE__, argv[0], ERQ_DEBUG
fprintf(stderr, "%s psyclpc extended external request daemon: Path '%s', debuglevel %d\n"
, time_stamp(), argv[0], ERQ_DEBUG
);
}