diff options
author | 2009-08-27 11:38:50 +0000 | |
---|---|---|
committer | 2009-08-27 11:38:50 +0000 | |
commit | d68200d3985175731845a61e4170bcf0aca8eb4c (patch) | |
tree | b30870507ae0210a78b30d98dccbd6233cdc897b | |
parent | Implement client side of the SMTP protocol in a library-like module. (diff) | |
download | wireguard-openbsd-d68200d3985175731845a61e4170bcf0aca8eb4c.tar.xz wireguard-openbsd-d68200d3985175731845a61e4170bcf0aca8eb4c.zip |
s/relayd/smtpd/
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index 756236d4e1e..02b03513003 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.33 2009/08/08 19:16:41 ian Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.34 2009/08/27 11:38:50 jacekm Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -125,7 +125,7 @@ main(int argc, char *argv[]) errx(1, "unsupported mode"); connected: - /* connect to relayd control socket */ + /* connect to smtpd control socket */ if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) err(1, "socket"); |