aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tftp/tftp.c
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2022-11-17 16:09:58 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2022-11-17 16:42:30 +0000
commitbacb00ab408a2178d13f33d0cd9c6622913d80a9 (patch)
tree46b61f6d74dc84718dc0c7789ac19c20d27c98a7 /usr.bin/tftp/tftp.c
parent9f9544fd92e606d13e228b713d3c4a7cad78575d (diff)
downloadsrc-bacb00ab408a2178d13f33d0cd9c6622913d80a9.tar.gz
src-bacb00ab408a2178d13f33d0cd9c6622913d80a9.zip
tftpd: whitespace cleanup
Diffstat (limited to 'usr.bin/tftp/tftp.c')
-rw-r--r--usr.bin/tftp/tftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c
index 7a0565c5bdcd..31fefd8f22e2 100644
--- a/usr.bin/tftp/tftp.c
+++ b/usr.bin/tftp/tftp.c
@@ -96,7 +96,7 @@ xmitfile(int peer, char *port, int fd, char *name, char *mode)
struct sockaddr_storage from;
/* Tell the other side what we want to do */
- if (debug&DEBUG_SIMPLE)
+ if (debug & DEBUG_SIMPLE)
printf("Sending %s\n", name);
n = send_wrq(peer, name, mode);
@@ -196,7 +196,7 @@ recvfile(int peer, char *port, int fd, char *name, char *mode)
struct sockaddr_storage from;
/* Tell the other side what we want to do */
- if (debug&DEBUG_SIMPLE)
+ if (debug & DEBUG_SIMPLE)
printf("Requesting %s\n", name);
n = send_rrq(peer, name, mode);