]> mj.ucw.cz Git - libucw.git/blobdiff - lib/fb-temp.c
CGI: make_out_args() handles undefs correctly.
[libucw.git] / lib / fb-temp.c
index 2c359e8a62430410e8646feb72ba4c6d26c0bb84..65398c154eb7ef447d675f746f6c8a738126d9c5 100644 (file)
@@ -16,7 +16,7 @@
 #include <unistd.h>
 #include <sys/fcntl.h>
 
-static byte *temp_prefix = "/tmp/temp";
+static char *temp_prefix = "/tmp/temp";
 
 static struct cf_section temp_config = {
   CF_ITEMS {
@@ -45,7 +45,7 @@ temp_file_name(char *buf)
 struct fastbuf *
 bopen_tmp(uns buflen)
 {
-  byte buf[TEMP_FILE_NAME_LEN];
+  char buf[TEMP_FILE_NAME_LEN];
   struct fastbuf *f;
 
   temp_file_name(buf);