From: jca Date: Thu, 21 Dec 2023 11:25:38 +0000 (+0000) Subject: Tweak comment, the actual format is "ucom:" X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=5cc7c8afa4152b0849caae5757d39c08cd7eade4;p=openbsd Tweak comment, the actual format is "ucom:" ok krw@ --- 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))