From ceb02cee2c021ae34d07d431a6e13a02827adf5d Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 3 Aug 2005 20:37:13 +0000 Subject: [PATCH] If they havent told us by now, they probably never will. svn:r4687 --- src/or/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/config.c b/src/or/config.c index 47c0fd1a44..94daaecb98 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -670,7 +670,7 @@ config_find_option(config_format_t *fmt, const char *key) for (i=0; fmt->vars[i].name; ++i) { if (!strncasecmp(key, fmt->vars[i].name, keylen)) { log_fn(LOG_WARN, "The abbreviation '%s' is deprecated. " - "Tell Nick and Roger to make it official, or just use '%s' instead", + "Please use '%s' instead", key, fmt->vars[i].name); return &fmt->vars[i]; }