badwords: add more contractions, fix fallouts

Also fix hits in autotools scripts (not to enforce).

Closes #19576
This commit is contained in:
Viktor Szakats 2025-11-17 18:03:22 +01:00
parent ad35ecba97
commit 1e1ec7f6c2
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
46 changed files with 126 additions and 113 deletions

View file

@ -44,7 +44,7 @@
*
* o We want FTP-SSL support, which means that a connection that starts with
* plain sockets needs to be able to "go SSL" in the midst. This would also
* require some nasty perl stuff I'd rather avoid.
* require some nasty perl stuff I would rather avoid.
*
* (Source originally based on sws.c)
*/

View file

@ -148,7 +148,7 @@ struct bf {
tftphdr_storage_t buf; /* room for data packet */
};
#define BF_ALLOC -3 /* alloc'd but not yet filled */
#define BF_ALLOC -3 /* allocated but not yet filled */
#define BF_FREE -2 /* free */
#define opcode_RRQ 1
@ -417,7 +417,7 @@ static int writeit(struct testcase *test, struct tftphdr * volatile *dpp,
current = !current; /* switch to other buffer */
if(bfs[current].counter != BF_FREE) /* if not free */
write_behind(test, convert); /* flush it */
bfs[current].counter = BF_ALLOC; /* mark as alloc'd */
bfs[current].counter = BF_ALLOC; /* mark as allocated */
*dpp = &bfs[current].buf.hdr;
return ct; /* this is a lie of course */
}