CVE-2023-1667:token: Add missing whitespace

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Norbert Pocs <npocs@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jakub Jelen
2023-03-16 14:16:50 +01:00
committed by Andreas Schneider
parent 3981aeede2
commit df350d3aa4

View File

@@ -87,7 +87,7 @@ struct ssh_tokens_st *ssh_tokenize(const char *chain, char separator)
return NULL;
}
tokens->buffer= strdup(chain);
tokens->buffer = strdup(chain);
if (tokens->buffer == NULL) {
goto error;
}