diff --git a/config.h b/config.h index 74f5a79..dafd3b3 100644 --- a/config.h +++ b/config.h @@ -81,18 +81,18 @@ #ifdef HAVE_LONG_LONG typedef long long intmax_t; typedef unsigned long long uintmax_t; -#define PRIdMAX "%Ld" -#define PRIuMAX "%Lu" -#define PRIxMAX "%Lx" +#define PRIdMAX "Ld" +#define PRIuMAX "Lu" +#define PRIxMAX "Lx" #define INTMAX_C(x) (x##LL) #define UINTMAX_C(x) (x##ULL) #define strtoumax(p,e,b) strtoull(p,e,b) #else typedef long intmax_t; typedef unsigned long uintmax_t; -#define PRIdMAX "%ld" -#define PRIuMAX "%lu" -#define PRIxMAX "%lx" +#define PRIdMAX "ld" +#define PRIuMAX "lu" +#define PRIxMAX "lx" #define INTMAX_C(x) (x##L) #define UINTMAX_C(x) (x##UL) #define strtoumax(p,e,b) strtoul(p,e,b) diff --git a/tftp/extern.h b/tftp/extern.h index 4d4d016..60ad0e9 100644 --- a/tftp/extern.h +++ b/tftp/extern.h @@ -41,7 +41,7 @@ #ifndef RECVFILE_H #define RECVFILE_H -void recvfile (int, char *, char *); -void sendfile (int, char *, char *); +void tftp_recvfile (int, char *, char *); +void tftp_sendfile (int, char *, char *); #endif diff --git a/tftp/main.c b/tftp/main.c index 69fdae6..a5fcef8 100644 --- a/tftp/main.c +++ b/tftp/main.c @@ -385,7 +385,7 @@ put(int argc, char *argv[]) printf("putting %s to %s:%s [%s]\n", cp, hostname, targ, mode); peeraddr.sin_port = port; - sendfile(fd, targ, mode); + tftp_sendfile(fd, targ, mode); return; } /* this assumes the target is a directory */ @@ -403,7 +403,7 @@ put(int argc, char *argv[]) printf("putting %s to %s:%s [%s]\n", argv[n], hostname, targ, mode); peeraddr.sin_port = port; - sendfile(fd, targ, mode); + tftp_sendfile(fd, targ, mode); } } @@ -475,7 +475,7 @@ get(int argc, char *argv[]) printf("getting from %s:%s to %s [%s]\n", hostname, src, cp, mode); peeraddr.sin_port = port; - recvfile(fd, src, mode); + tftp_recvfile(fd, src, mode); break; } cp = tail(src); /* new .. jdg */ @@ -488,7 +488,7 @@ get(int argc, char *argv[]) printf("getting from %s:%s to %s [%s]\n", hostname, src, cp, mode); peeraddr.sin_port = port; - recvfile(fd, src, mode); + tftp_recvfile(fd, src, mode); } } diff --git a/tftp/tftp.c b/tftp/tftp.c index f576ea6..eb1a8a5 100644 --- a/tftp/tftp.c +++ b/tftp/tftp.c @@ -110,7 +110,7 @@ static void tpacket(const char *, struct tftphdr *, int); * Send the requested file. */ void -sendfile(int fd, char *name, char *mode) +tftp_sendfile(int fd, char *name, char *mode) { struct tftphdr *ap; /* data and ack packets */ struct tftphdr *dp; @@ -212,7 +212,7 @@ abort: * Receive a file. */ void -recvfile(int fd, char *name, char *mode) +tftp_recvfile(int fd, char *name, char *mode) { struct tftphdr *ap; struct tftphdr *dp;