Initially the libssh2 code was indented with tabs of 4 spaces. Some of

the recent commits converted the tabs to 4 spaces, which matched the
initial indent size.  Other commits converted the tabs to 8 spaces, this
didn't match.

All the code has been converted to 4 space indents.  No changes to line
lengths or actual code was performed.  This is in preperation to my up
coming non-blocking work so my commits should only be code changes and
line lengths in the code I am working on.
This commit is contained in:
James Housley 2007-05-28 17:56:08 +00:00
parent 355c9c634b
commit 412b25d971
23 changed files with 8247 additions and 8248 deletions

View File

@ -69,8 +69,7 @@ int _libssh2_rsa_new(libssh2_rsa_ctx **rsa,
(*rsa)->n = BN_new(); (*rsa)->n = BN_new();
BN_bin2bn(ndata, nlen, (*rsa)->n); BN_bin2bn(ndata, nlen, (*rsa)->n);
if (ddata) if (ddata) {
{
(*rsa)->d = BN_new(); (*rsa)->d = BN_new();
BN_bin2bn(ddata, dlen, (*rsa)->d); BN_bin2bn(ddata, dlen, (*rsa)->d);