You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
845 B

  1. --- a/clients/lcdproc/main.c
  2. +++ b/clients/lcdproc/main.c
  3. @@ -58,7 +58,6 @@ int Quit = 0;
  4. int sock = -1;
  5. char *version = VERSION;
  6. -char *build_date = __DATE__;
  7. int lcd_wid = 0;
  8. int lcd_hgt = 0;
  9. --- a/server/main.c
  10. +++ b/server/main.c
  11. @@ -104,7 +104,6 @@
  12. char *version = VERSION;
  13. char *protocol_version = PROTOCOL_VERSION;
  14. char *api_version = API_VERSION;
  15. -char *build_date = __DATE__;
  16. /**** Configuration variables ****/
  17. @@ -197,8 +196,8 @@ main(int argc, char **argv)
  18. /* Report that server is starting (report will be delayed) */
  19. report(RPT_NOTICE, "LCDd version %s starting", version);
  20. - report(RPT_INFO, "Built on %s, protocol version %s, API version %s",
  21. - build_date, protocol_version, api_version);
  22. + report(RPT_INFO, "Protocol version %s, API version %s",
  23. + protocol_version, api_version);
  24. clear_settings();