Fixed some compiler warnings on OpenBSD

This commit is contained in:
Michiel Broek 2004-12-29 15:09:38 +00:00
parent faec864516
commit 3c39833c41
4 changed files with 4 additions and 4 deletions

View File

@ -199,7 +199,7 @@ void ForwardFile(fidoaddr Node, fa_list *sbl)
subject = ctime(&now); subject = ctime(&now);
Striplf(subject); Striplf(subject);
ba = bestaka_s(dest); ba = bestaka_s(dest);
fprintf(fp, "Path %s %lu %s %s\r\n", ascfnode(ba, 0x1f), mktime(localtime(&now)), subject, tzname[0]); fprintf(fp, "Path %s %lu %s %s\r\n", ascfnode(ba, 0x1f), (long)mktime(localtime(&now)), subject, tzname[0]);
tidy_faddr(ba); tidy_faddr(ba);
if (nodes.TIC_AdvSB) { if (nodes.TIC_AdvSB) {

View File

@ -100,7 +100,7 @@ int toss_onemsg(char *msgname)
char fromUserName[36], toUserName[36], subject[72], DateTime[20]; char fromUserName[36], toUserName[36], subject[72], DateTime[20];
FILE *fp, *np; FILE *fp, *np;
faddr *ta; faddr *ta;
unsigned char buf[0xbd]; unsigned char buf[0xbe];
unsigned short destNode = 0, destNet = 0, destZone = 0, destPoint = 0; unsigned short destNode = 0, destNet = 0, destZone = 0, destPoint = 0;
unsigned short origNode = 0, origNet = 0, origZone = 0, origPoint = 0; unsigned short origNode = 0, origNet = 0, origZone = 0, origPoint = 0;
unsigned short Attribute = 0; unsigned short Attribute = 0;

View File

@ -222,7 +222,7 @@ static int wctxpn(char *fname)
* int. But i believe sending %lo instead of %o _could_ break compatability * int. But i believe sending %lo instead of %o _could_ break compatability
*/ */
if ((input_f != stdin) && *fname) if ((input_f != stdin) && *fname)
sprintf(p, "%lu %lo %o 0 %d %ld", (long) f.st_size, f.st_mtime, sprintf(p, "%lu %lo %o 0 %d %ld", (long) f.st_size, (long) f.st_mtime,
(unsigned int)((no_unixmode) ? 0 : f.st_mode), Filesleft, Totalleft); (unsigned int)((no_unixmode) ? 0 : f.st_mode), Filesleft, Totalleft);
Totalleft -= f.st_size; Totalleft -= f.st_size;

View File

@ -213,7 +213,7 @@ static int sendzfile(char *rn)
Syslog('+', "Zmodem: size %lu bytes, dated %s", (unsigned long)st.st_size, rfcdate(st.st_mtime)); Syslog('+', "Zmodem: size %lu bytes, dated %s", (unsigned long)st.st_size, rfcdate(st.st_mtime));
gettimeofday(&starttime, &tz); gettimeofday(&starttime, &tz);
sprintf(txbuf,"%s %lu %lo %o 0 0 0", rn,(unsigned long)st.st_size, st.st_mtime+(st.st_mtime%2), st.st_mode); sprintf(txbuf,"%s %lu %lo %o 0 0 0", rn,(unsigned long)st.st_size, (long)st.st_mtime+(st.st_mtime%2), st.st_mode);
bufl = strlen(txbuf); bufl = strlen(txbuf);
*(strchr(txbuf,' ')) = '\0'; /*hope no blanks in filename*/ *(strchr(txbuf,' ')) = '\0'; /*hope no blanks in filename*/