From 090772b0983a9c97eb34672bb0d8e390c342da81 Mon Sep 17 00:00:00 2001 From: yar Date: Fri, 12 Oct 2001 13:06:40 +0000 Subject: Be consistent about indent at least within one block of code. --- libexec/ftpd/ftpd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libexec/ftpd') diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index c2fff41..1c37280 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -1412,11 +1412,11 @@ skip: syslog(LOG_INFO, "ANONYMOUS FTP LOGIN FROM %s, %s", remotehost, passwd); } else { - if (dochroot) - reply(230, "User %s logged in, access restrictions apply.", - pw->pw_name); - else - reply(230, "User %s logged in.", pw->pw_name); + if (dochroot) + reply(230, "User %s logged in, " + "access restrictions apply.", pw->pw_name); + else + reply(230, "User %s logged in.", pw->pw_name); #ifdef SETPROCTITLE snprintf(proctitle, sizeof(proctitle), -- cgit v1.1