diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2001-08-19 05:22:38 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2001-08-19 05:22:38 +0000 |
commit | ec2f5c14e1357d682af9e5843bd4347a48dbda98 (patch) | |
tree | d46e05f524681048ebffeb6158518a1c7e5cd7cd /libexec/ftp-proxy/ftp-proxy.c | |
parent | b1557139df023d9b579e549469144cc917498bfc (diff) |
gratuitous KNFism's, don't have it looking like it's your first day
with your new crack pipe
Diffstat (limited to 'libexec/ftp-proxy/ftp-proxy.c')
-rw-r--r-- | libexec/ftp-proxy/ftp-proxy.c | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/libexec/ftp-proxy/ftp-proxy.c b/libexec/ftp-proxy/ftp-proxy.c index 54e12936614..de6c6809ae2 100644 --- a/libexec/ftp-proxy/ftp-proxy.c +++ b/libexec/ftp-proxy/ftp-proxy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp-proxy.c,v 1.1 2001/08/19 04:11:12 beck Exp $ */ +/* $OpenBSD: ftp-proxy.c,v 1.2 2001/08/19 05:22:37 beck Exp $ */ /* * Copyright (c) 1996-2001 * Obtuse Systems Corporation. All rights reserved. @@ -794,18 +794,14 @@ do_server_reply(struct csiob *server, struct csiob *client) } server_listen_sa.sin_family = AF_INET; - server_listen_sa.sin_addr.s_addr = htonl( - (values[0] << 24) | - (values[1] << 16) | - (values[2] << 8) | - (values[3] << 0) - ); - server_listen_sa.sin_port = htons((values[4] << 8) - | values[5]); + server_listen_sa.sin_addr.s_addr = htonl((values[0] << 24) | + (values[1] << 16) | (values[2] << 8) | (values[3] << 0)); + server_listen_sa.sin_port = htons((values[4] << 8) | + values[5]); debuglog(1,"server wants us to use %s:%u\n", - inet_ntoa(server_listen_sa.sin_addr), - (values[4] << 8) | values[5]); + inet_ntoa(server_listen_sa.sin_addr), (values[4] << 8) | + values[5]); new_dataconn(0); @@ -814,8 +810,7 @@ do_server_reply(struct csiob *server, struct csiob *client) iap = &(server->sa.sin_addr); debuglog(1,"we want client to use %s:%u\n", inet_ntoa(*iap), - (((u_char *)&client_listen_sa.sin_port)[0] << 8) - | ((u_char *)&client_listen_sa.sin_port)[1]); + htons(client_listen_sa.sin_port)); snprintf(tbuf, sizeof(tbuf), "227 Entering Passive Mode (%u,%u,%u,%u,%u,%u\r\n", |