Index: fusl/include/arpa/tftp.h |
diff --git a/fusl/include/arpa/tftp.h b/fusl/include/arpa/tftp.h |
index 799c54f2217e0671ea1c676fbfe50ed6304d7dbb..12add70e023b44593951f5e098b3d039b0b5d702 100644 |
--- a/fusl/include/arpa/tftp.h |
+++ b/fusl/include/arpa/tftp.h |
@@ -7,13 +7,13 @@ |
#define ACK 04 |
#define ERROR 05 |
struct tftphdr { |
- short th_opcode; |
- union { |
- unsigned short tu_block; |
- short tu_code; |
- char tu_stuff[1]; |
- } th_u; |
- char th_data[1]; |
+ short th_opcode; |
+ union { |
+ unsigned short tu_block; |
+ short tu_code; |
+ char tu_stuff[1]; |
+ } th_u; |
+ char th_data[1]; |
}; |
#define th_block th_u.tu_block |
#define th_code th_u.tu_code |
@@ -28,4 +28,3 @@ struct tftphdr { |
#define EEXISTS 6 |
#define ENOUSER 7 |
#endif |
- |