Correct unkown => unknown typo

Last-Update: 2013-09-09

Gbp-Pq: Name radius-config.c-unkown-typo
This commit is contained in:
Chris Boot 2022-05-14 02:43:52 +08:00 committed by openKylinBot
parent dcd19911b1
commit f39727fffe
1 changed files with 3 additions and 3 deletions

View File

@ -271,7 +271,7 @@ char *rc_conf_str(char *optname)
option = find_option(optname, OT_STR);
if (option == NULL)
fatal("rc_conf_str: unkown config option requested: %s", optname);
fatal("rc_conf_str: unknown config option requested: %s", optname);
return (char *)option->val;
}
@ -282,7 +282,7 @@ int rc_conf_int(char *optname)
option = find_option(optname, OT_INT|OT_AUO);
if (option == NULL)
fatal("rc_conf_int: unkown config option requested: %s", optname);
fatal("rc_conf_int: unknown config option requested: %s", optname);
return *((int *)option->val);
}
@ -293,7 +293,7 @@ SERVER *rc_conf_srv(char *optname)
option = find_option(optname, OT_SRV);
if (option == NULL)
fatal("rc_conf_srv: unkown config option requested: %s", optname);
fatal("rc_conf_srv: unknown config option requested: %s", optname);
return (SERVER *)option->val;
}