From 10ee133c300bde24c18d68a066efbf64016c7f62 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Mon, 19 Mar 2012 21:47:53 +0100 Subject: [PATCH] common.h: Add #define ADMINCONTACT for easy customization --- common.h | 3 +++ compctl.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/common.h b/common.h index 402be1e..95efeaa 100644 --- a/common.h +++ b/common.h @@ -6,6 +6,9 @@ /* Compile-time configuration area. */ +/* Contact of the network administrators. */ +#define ADMINCONTACT "" + /* Default memory split policy. Memory is split between * user and computations by split_ratio, but so that neither * has reserved less than minfree (in case of too little memory, diff --git a/compctl.c b/compctl.c index 80b150b..9c6b821 100644 --- a/compctl.c +++ b/compctl.c @@ -92,7 +92,7 @@ help(FILE *f) { fputs("compctl - Computations under control\n\n" #include "help-in-quotes" - "Contact with bug reports and comments.\n", f); + "Contact " ADMINCONTACT " with bug reports and comments.\n", f); } int -- 2.11.4.GIT