Some casts.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4768 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1998-04-13 10:23:33 +00:00
parent dc2e9fb093
commit 5f4f0ccfc6
3 changed files with 16 additions and 14 deletions

View File

@@ -436,7 +436,7 @@ void pbsz(int size)
buffer_size = size;
}
if(new != size)
reply(200, "PBSZ=%lu", new);
reply(200, "PBSZ=%lu", (unsigned long)new);
else
reply(200, "OK");
}

View File

@@ -327,9 +327,11 @@ cmd
if(oobflag){
if (file_size != (off_t) -1)
reply(213, "Status: %ld of %ld bytes transferred",
byte_count, file_size);
(unsigned long)byte_count,
(unsigned long)file_size);
else
reply(213, "Status: %ld bytes transferred", byte_count);
reply(213, "Status: %ld bytes transferred",
(unsigned long)byte_count);
}else
statcmd();
}
@@ -1382,7 +1384,7 @@ sizecmd(char *filename)
case TYPE_A: {
FILE *fin;
int c;
off_t count;
size_t count;
struct stat stbuf;
fin = fopen(filename, "r");
if (fin == NULL) {
@@ -1403,7 +1405,7 @@ sizecmd(char *filename)
}
fclose(fin);
reply(213, "%ld", count);
reply(213, "%ld", (unsigned long)count);
break; }
default:
reply(504, "SIZE not implemented for Type %c.", "?AEIL"[type]);

View File

@@ -1096,8 +1096,8 @@ dataconn(char *name, off_t size, char *mode)
file_size = size;
byte_count = 0;
if (size != (off_t) -1)
snprintf(sizebuf, sizeof(sizebuf), " (%ld bytes)", size);
if (size >= 0)
snprintf(sizebuf, sizeof(sizebuf), " (%ld bytes)", (long)size);
else
strcpy(sizebuf, "");
if (pdata >= 0) {