mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
Remove an unused helper function.
I was wondering what this was doing here at all when strbuf_chomp is a better choice. The answer turned out to be 'nothing' - it wasn't even used any more.
This commit is contained in:
parent
23245fb418
commit
10d3645a93
11
import.c
11
import.c
@ -174,17 +174,6 @@ bool export_ssh2(const Filename *filename, int type,
|
||||
return false;
|
||||
}
|
||||
|
||||
/*
|
||||
* Strip trailing CRs and LFs at the end of a line of text.
|
||||
*/
|
||||
void strip_crlf(char *str)
|
||||
{
|
||||
char *p = str + strlen(str);
|
||||
|
||||
while (p > str && (p[-1] == '\r' || p[-1] == '\n'))
|
||||
*--p = '\0';
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
* Helper routines. (The base64 ones are defined in sshpubk.c.)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user