- (djm) Avoid uuencode.c warnings

This commit is contained in:
Damien Miller 2003-05-15 13:57:51 +10:00
parent 34bb56743a
commit ffda4cb218
2 changed files with 5 additions and 4 deletions

View File

@ -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
@ -1515,4 +1516,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2715 2003/05/15 03:49:58 djm Exp $
$Id: ChangeLog,v 1.2716 2003/05/15 03:57:51 djm Exp $

View File

@ -1,4 +1,4 @@
/* $Id: base64.h,v 1.4 2003/02/24 04:45:43 djm Exp $ */
/* $Id: base64.h,v 1.5 2003/05/15 03:57:51 djm Exp $ */
#ifndef _BSD_BASE64_H
#define _BSD_BASE64_H
@ -10,14 +10,14 @@
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 */