Re: crypt32: fix a typo

2006-04-11 Thread Juan Lang
 All power to you :) I forgot to add the smiley, I
 meant it half-joking.

I shouldn't reply to email late, ever :)  Bad coder: more caffeine for
you!
--Juan

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 




Re: crypt32: fix a typo

2006-04-10 Thread Dimi Paun
On Mon, 2006-04-10 at 21:05 -0700, Juan Lang wrote:
 -ret = CryptGetProvParam(hProv, PP_CONTAINER, (BYTE 
 *)szContainer,
 -size, 0);
 +ret = CryptGetProvParam(hProv, PP_CONTAINER,
 + (BYTE *)szContainer, size, 0);
  if (ret)
  {
  len = MultiByteToWideChar(CP_ACP, 0, szContainer, -1,
 @@ -761,7 +761,8 @@
  
  if (szProvider)
  {
 -ret = CryptGetProvParam(hProv, PP_NAME, (BYTE *)szProvider, 
 size, 0);
 +ret = CryptGetProvParam(hProv, PP_NAME, (BYTE *)szProvider,
 + size, 0);
  if (ret)

Why ruin perfectly good formatting? 

-- 
Dimi Paun [EMAIL PROTECTED]
Lattica, Inc.





Re: crypt32: fix a typo

2006-04-10 Thread Juan Lang
 Why ruin perfectly good formatting? 

This eliminates a line-wrap in my 80-col editor, and makes it consistent
with the rest of the file, and indeed with the rest of the DLL.  Plus,
it's my file.

--Juan

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 




Re: crypt32: fix a typo

2006-04-10 Thread Dimi Paun
On Mon, 2006-04-10 at 22:28 -0700, Juan Lang wrote:
 Plus, it's my file.

All power to you :) I forgot to add the smiley, I
meant it half-joking.

-- 
Dimi Paun [EMAIL PROTECTED]
Lattica, Inc.