From 8b3ce8e88e60aeb697f4778a64c773fb99f93231 Mon Sep 17 00:00:00 2001 From: sthen <> Date: Tue, 28 Jan 2014 22:57:37 +0000 Subject: [PATCH] typo in errx() string --- src/usr.sbin/ntpd/ntpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr.sbin/ntpd/ntpd.c b/src/usr.sbin/ntpd/ntpd.c index 9f3539d1..3d1e9a07 100644 --- a/src/usr.sbin/ntpd/ntpd.c +++ b/src/usr.sbin/ntpd/ntpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.c,v 1.77 2014/01/22 02:55:15 benno Exp $ */ +/* $OpenBSD: ntpd.c,v 1.78 2014/01/28 22:57:37 sthen Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -687,7 +687,7 @@ ctl_lookup_option(char *cmd, const char **list) if (item == NULL) item = *list; else - errx(1, "%s is ambigious", cmd); + errx(1, "%s is ambiguous", cmd); } return (item); }