* Charles Duffy:
> @@ -242,8 +242,7 @@
> char buffer[MAXLINELEN+1];
> int errorCode = GetLastError();
>
> - snprintf(buffer, MAXLINELEN, _("Unable to copy '%s' to '%s' -
> error %d", 0), source, target, errorCode);
> - strcat(buffer, "
Vlada,
In updating my local Certificate Wizard fork to be based off 0.3b, I
observed an issue introduced during your cleanup of my CopyOneFile
function.
My original code:
snprintf(buffer, MAXLINELEN, "Unable to copy \"%s\" to \"%s\" - error %d:
%%s", source, target, errorCode);
DisplayEr