mirror of
https://github.com/curl/curl.git
synced 2026-08-24 17:53:33 +03:00
badwords: add more contractions, fix fallouts
Also fix hits in autotools scripts (not to enforce). Closes #19576
This commit is contained in:
parent
ad35ecba97
commit
1e1ec7f6c2
46 changed files with 126 additions and 113 deletions
|
|
@ -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)
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue