From 437e0a6756c50d69d3364d03f7c1af8c2846d8ee Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Fri, 12 Oct 2018 14:27:31 +0200 Subject: [PATCH] Fix C++ style comments in TFTP --- src/apps/tftp/tftp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/tftp/tftp.c b/src/apps/tftp/tftp.c index 2f730857..46b7ae3a 100644 --- a/src/apps/tftp/tftp.c +++ b/src/apps/tftp/tftp.c @@ -502,7 +502,7 @@ tftp_get(void* handle, const ip_addr_t *addr, u16_t port, const char* fname, con tftp_state.handle = handle; tftp_state.blknum = 1; - tftp_state.mode_write = 1; // We want to receive data + tftp_state.mode_write = 1; /* We want to receive data */ send_request(addr, port, TFTP_RRQ, fname, mode); return ERR_OK; } @@ -514,7 +514,7 @@ tftp_put(void* handle, const ip_addr_t *addr, u16_t port, const char* fname, con tftp_state.handle = handle; tftp_state.blknum = 1; - tftp_state.mode_write = 0; // We want to send data + tftp_state.mode_write = 0; /* We want to send data */ send_request(addr, port, TFTP_WRQ, fname, mode); return ERR_OK; }