]> andersk Git - openssh.git/commitdiff
- (djm) Avoid uuencode.c warnings
authordjm <djm>
Thu, 15 May 2003 03:57:51 +0000 (03:57 +0000)
committerdjm <djm>
Thu, 15 May 2003 03:57:51 +0000 (03:57 +0000)
ChangeLog
openbsd-compat/base64.h

index 8913d9651df0d35a5fc5a5e9bc9980c492e30bc1..f2acac8c79eaf6dd59f33f46e19747217cb4f77c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -40,6 +40,7 @@
  - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
  - (djm) Tidy Makefile clean targets
  - (djm) Adapt README.dns for portable
+ - (djm) Avoid uuencode.c warnings
 
 20030514
  - (djm) Bug #117: Don't lie to PAM about username
index 4e807cbc90a6ba46504c90ab4e54983c3143c2cb..9200a62f73fa98e9179fbb1e8e2d9699fd1a9556 100644 (file)
 int b64_ntop(u_char const *src, size_t srclength, char *target, 
     size_t targsize);
 # endif /* !HAVE_B64_NTOP */
-# define __b64_ntop b64_ntop
+# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
 #endif /* HAVE___B64_NTOP */
 
 #ifndef HAVE___B64_PTON
 # ifndef HAVE_B64_PTON
 int b64_pton(char const *src, u_char *target, size_t targsize);
 # endif /* !HAVE_B64_PTON */
-# define __b64_pton b64_pton
+# define __b64_pton(a,b,c) b64_pton(a,b,c)
 #endif /* HAVE___B64_PTON */
 
 #endif /* _BSD_BASE64_H */
This page took 0.040711 seconds and 5 git commands to generate.