diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-01 21:10:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-01 21:10:12 -0400 |
commit | afd1fec90c274daeed2806cf6602bba68c9b1777 (patch) | |
tree | 5fe20bb13b3679452682cbf4096845729b9dd71c | |
parent | 88fd11e52a45837f68610c4a29367ae67f5b90bf (diff) |
Remove debugging print statements
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | omar.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -318,13 +318,6 @@ archive_extract(void) hdr = (struct omar_hdr *)buf; for (;;) { - #if 0 - printf("MAGIC: %s\n", hdr->magic); - printf("TYPE: %d\n", hdr->type); - printf("LEN: %d\n", hdr->len); - printf("NAMELEN: %d\n", hdr->namelen); - #endif - if (memcmp(hdr->magic, OMAR_EOF, sizeof(OMAR_EOF)) == 0) { printf("EOF!\n"); return 0; |