mirror of
git://git.psyced.org/git/psyclpc
synced 2024-08-15 03:20:16 +00:00
removed pointless use of non-reproducible macros
This commit is contained in:
parent
8bd51f2a48
commit
daa2f57b71
3 changed files with 6 additions and 4 deletions
|
@ -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() */
|
||||
|
||||
/*-------------------------------------------------------------------------*/
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue