Overview
| Comment: | Correct a mistake in the change to misc/har.c that was recently made |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8eabce35720f3e45d36edacb230ba7d3 |
| User & Date: | user on 2026-09-24 19:30:48.797 |
| Other Links: | manifest | tags |
Context
|
2026-09-24
| ||
| 19:30 | Correct a mistake in the change to misc/har.c that was recently made Leaf check-in: 8eabce3572 user: user tags: trunk | |
| 05:13 | Add "bunny" mode for the "bunny archive" format suggested for use with uxn in a discussion; not used in Free Hero Mesh, though. check-in: a0e8163568 user: user tags: trunk | |
Changes
Modified misc/har.c
from [c464e5cfda]
to [2223dc5648].
| ︙ | |||
81 82 83 84 85 86 87 88 89 90 91 | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | + + + + + - - - - - |
if(n==254) fatal("Name too long: %s",name);
}
if(opt['s']) {
if(!n) name[1]=0,n=1;
if(d) name[n-1]='_';
}
if(opt['b']) {
size=fgetc(stdin)<<24;
size|=fgetc(stdin)<<16;
size|=fgetc(stdin)<<8;
size|=fgetc(stdin);
} else {
size=fgetc(stdin)<<16;
size|=fgetc(stdin)<<24;
size|=fgetc(stdin);
size|=fgetc(stdin)<<8;
|
| ︙ |