Tweak comment, the actual format is "ucom<unit#>:<usb id>"
authorjca <jca@openbsd.org>
Thu, 21 Dec 2023 11:25:38 +0000 (11:25 +0000)
committerjca <jca@openbsd.org>
Thu, 21 Dec 2023 11:25:38 +0000 (11:25 +0000)
ok krw@

usr.bin/cu/cu.c

index 25d7423..b6e7a47 100644 (file)
@@ -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 <nicm@openbsd.org>
@@ -507,7 +507,7 @@ find_ucom(const char *usbid, char *names)
        if (names == NULL)
                return NULL;
 
-       /* names is a comma separated list of "ucom<unit#>-<usb id>". */
+       /* names is a comma separated list of "ucom<unit#>:<usb id>". */
        cua = NULL;
        for (ucom = strsep(&names, ","); ucom; ucom = strsep(&names, ",")) {
                if (*ucom == '\0' || strncasecmp(ucom, "ucom", 4))