summaryrefslogtreecommitdiff
path: root/radix.c
diff options
context:
space:
mode:
Diffstat (limited to 'radix.c')
-rw-r--r--radix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/radix.c b/radix.c
index c87dd2d35..ea7f5ba2b 100644
--- a/radix.c
+++ b/radix.c
@@ -213,7 +213,7 @@ creds_to_radix(CREDENTIALS *creds, unsigned char *buf)
213 p += creds->ticket_st.length; 213 p += creds->ticket_st.length;
214 len = p - temp; 214 len = p - temp;
215 215
216 return (uuencode(temp, len, buf)); 216 return (uuencode((unsigned char *)temp, len, (char *)buf));
217} 217}
218 218
219int 219int
@@ -225,7 +225,7 @@ radix_to_creds(const char *buf, CREDENTIALS *creds)
225 char version; 225 char version;
226 char temp[2048]; 226 char temp[2048];
227 227
228 if (!(len = uudecode(buf, temp, sizeof(temp)))) 228 if (!(len = uudecode(buf, (unsigned char *)temp, sizeof(temp))))
229 return 0; 229 return 0;
230 230
231 p = temp; 231 p = temp;