From 14380b37ccaa30228bae80347f7f44a9ceb740cb Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Thu, 26 Apr 2018 23:17:13 +0100 Subject: [PATCH] fix makedoc UL -> IP --- doc/makedoc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/makedoc.c b/doc/makedoc.c index 02eecd059..f756acc7d 100644 --- a/doc/makedoc.c +++ b/doc/makedoc.c @@ -1306,11 +1306,11 @@ static void handle_confline(char *s, FILE *out) break; } - /* option name or UL &address */ + /* option name or IP &address */ s = get_token(buf, sizeof(buf), s); if (!s) return; - if (strcmp(buf, "UL") == 0) + if (strcmp(buf, "IP") == 0) { s = get_token(buf, sizeof(buf), s); if (!s) @@ -1325,14 +1325,14 @@ static void handle_confline(char *s, FILE *out) if (Debug) fprintf(stderr, "%s: Expecting default value.\n", Progname); - /* or UL */ + /* or IP */ s = get_token(buf, sizeof(buf), s); if (!s) return; - if (strcmp(buf, "UL") == 0) + if (strcmp(buf, "IP") == 0) { if (Debug) - fprintf(stderr, "%s: Skipping UL.\n", Progname); + fprintf(stderr, "%s: Skipping IP.\n", Progname); s = get_token(buf, sizeof(buf), s); if (!s) return; -- 2.40.0