diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-08-07 20:21:49 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-08-07 20:21:49 +0000 |
commit | b10b63a94e21cd3e2dc553a03a4964b967b9420f (patch) | |
tree | 8893c52e3609bac905690af485100ab30d6c81ce /usr.sbin/smtpd/smtpd.c | |
parent | 468afa9966703755ed46f0394e66dda494a978dc (diff) |
we were linking to libkeynote to use kn_base64_encode/decode, but honestly
this was a ugly hack, and i'd rather include resolv.h and use __b64_encode
and __b64_decode as openssh does. this commit kills all references to
libkeynote in smtpd, should help a bit with porting ... no functionnal
change.
Diffstat (limited to 'usr.sbin/smtpd/smtpd.c')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 02bdf26240d..207adeb2e23 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.81 2009/08/07 19:02:55 gilles Exp $ */ +/* $OpenBSD: smtpd.c,v 1.82 2009/08/07 20:21:48 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -46,8 +46,6 @@ #include <time.h> #include <unistd.h> -#include <keynote.h> - #include "smtpd.h" __dead void usage(void); |