From cfb1d40d73bdbd1a8d226f900ed23d87744fc022 Mon Sep 17 00:00:00 2001 From: cel Date: Tue, 31 Mar 2020 18:56:06 -0400 Subject: [PATCH] Update option conflict note --- sbotc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbotc.c b/sbotc.c index b41fbb6..8972a38 100644 --- a/sbotc.c +++ b/sbotc.c @@ -1183,7 +1183,7 @@ int main(int argc, char *argv[]) { s = -1; } else if (socket_path) { - if (implied_tcp) errx(1, "-u option conflicts with -s and -p options"); + if (implied_tcp) errx(1, "-u option conflicts with host/port options"); s = unix_connect(socket_path); if (s < 0) err(1, "unix_connect"); infd = outfd = s;