about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTRules.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTRules.c')
-rw-r--r--WWW/Library/Implementation/HTRules.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTRules.c b/WWW/Library/Implementation/HTRules.c
index 29235921..d0ff1207 100644
--- a/WWW/Library/Implementation/HTRules.c
+++ b/WWW/Library/Implementation/HTRules.c
@@ -319,7 +319,7 @@ PUBLIC int  HTSetConfiguration ARGS1(
 	word3 = HTNextField(&pointer);	/* Just the next word */
 
     if (!word2) {
-	fprintf(stderr, gettext("HTRule: Insufficient operands: %s\n"), line);
+	fprintf(stderr, "HTRule: %s %s\n", RULE_NEEDS_DATA, line);
 	FREE(line);
 	return -2;	/*syntax error */
     }
@@ -357,7 +357,7 @@ PUBLIC int  HTSetConfiguration ARGS1(
 	    :	0==strcasecomp(word1, "protect") ? HT_Protect
 	    :						HT_Invalid;
 	if (op==HT_Invalid) {
-	    fprintf(stderr, gettext("HTRule: Bad rule `%s'\n"), config);
+	    fprintf(stderr, "HTRule: %s '%s'\n", RULE_INCORRECT, config);
 	} else {
 	    HTAddRule(op, word2, word3);
 	}