]> andersk Git - openssh.git/blobdiff - radix.c
- OpenBSD CVS updates:
[openssh.git] / radix.c
diff --git a/radix.c b/radix.c
index c87dd2d35b2ee110a5e83bd13bd1d7d194bc6e19..ea7f5ba2bcac16714d88a5085b8e2c12e8b36228 100644 (file)
--- a/radix.c
+++ b/radix.c
@@ -213,7 +213,7 @@ creds_to_radix(CREDENTIALS *creds, unsigned char *buf)
        p += creds->ticket_st.length;
        len = p - temp;
 
-       return (uuencode(temp, len, buf));
+       return (uuencode((unsigned char *)temp, len, (char *)buf));
 }
 
 int 
@@ -225,7 +225,7 @@ radix_to_creds(const char *buf, CREDENTIALS *creds)
        char version;
        char temp[2048];
 
-       if (!(len = uudecode(buf, temp, sizeof(temp))))
+       if (!(len = uudecode(buf, (unsigned char *)temp, sizeof(temp))))
                return 0;
 
        p = temp;
This page took 0.039307 seconds and 4 git commands to generate.