From 5cc7c8afa4152b0849caae5757d39c08cd7eade4 Mon Sep 17 00:00:00 2001 From: jca Date: Thu, 21 Dec 2023 11:25:38 +0000 Subject: [PATCH] Tweak comment, the actual format is "ucom:" ok krw@ --- usr.bin/cu/cu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/cu/cu.c b/usr.bin/cu/cu.c index 25d742371d8..b6e7a476916 100644 --- a/usr.bin/cu/cu.c +++ b/usr.bin/cu/cu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cu.c,v 1.29 2023/10/02 14:48:11 krw Exp $ */ +/* $OpenBSD: cu.c,v 1.30 2023/12/21 11:25:38 jca Exp $ */ /* * Copyright (c) 2012 Nicholas Marriott @@ -507,7 +507,7 @@ find_ucom(const char *usbid, char *names) if (names == NULL) return NULL; - /* names is a comma separated list of "ucom-". */ + /* names is a comma separated list of "ucom:". */ cua = NULL; for (ucom = strsep(&names, ","); ucom; ucom = strsep(&names, ",")) { if (*ucom == '\0' || strncasecmp(ucom, "ucom", 4)) -- 2.20.1