mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:33:35 +03:00
sasl: use 'unsigned short' to store mechanism
... saves a few bytes of struct size in memory and it only uses 10 bits anyway. Closes #7045
This commit is contained in:
parent
fa050ffd27
commit
a9bc819c89
5 changed files with 13 additions and 12 deletions
|
|
@ -709,7 +709,7 @@ static CURLcode pop3_state_capa_resp(struct Curl_easy *data, int pop3code,
|
|||
for(;;) {
|
||||
size_t llen;
|
||||
size_t wordlen;
|
||||
unsigned int mechbit;
|
||||
unsigned short mechbit;
|
||||
|
||||
while(len &&
|
||||
(*line == ' ' || *line == '\t' ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue