This commit ties the new DSO code (crypto/dso/) into the build for a
[openssl.git] / crypto / des / enc_writ.c
index 892f15e2d709706a08fe4492af868986e9f532ac..4d3452724ecf7f396b64fe111f971bc25934e058 100644 (file)
@@ -135,7 +135,7 @@ int des_enc_write(int fd, const void *_buf, int len,
                }
        else
                {
-               cp=(unsigned char*)buf;
+               cp=buf;
                rnum=((len+7)/8*8); /* round up to nearest eight */
                }
 
@@ -152,7 +152,7 @@ int des_enc_write(int fd, const void *_buf, int len,
        for (j=0; j<outnum; j+=i)
                {
                /* eay 26/08/92 I was not doing writing from where we
-                * got upto. */
+                * got up to. */
                i=write(fd,(void *)&(outbuf[j]),outnum-j);
                if (i == -1)
                        {