From 7d880d1a774200812c91dcc77ebf9d12119bc924 Mon Sep 17 00:00:00 2001 From: Gilles Chehade Date: Sun, 8 Jul 2012 13:42:10 +0000 Subject: auth_bsd() is static --- usr.sbin/smtpd/auth_bsd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/smtpd/auth_bsd.c b/usr.sbin/smtpd/auth_bsd.c index 2ca0e19ee59..b9aba84eb17 100644 --- a/usr.sbin/smtpd/auth_bsd.c +++ b/usr.sbin/smtpd/auth_bsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth_bsd.c,v 1.1 2011/12/14 22:28:02 eric Exp $ */ +/* $OpenBSD: auth_bsd.c,v 1.2 2012/07/08 13:42:09 gilles Exp $ */ /* * Copyright (c) 2011 Gilles Chehade @@ -30,13 +30,13 @@ #include "smtpd.h" -int auth_bsd(char *, char *); +static int auth_bsd(char *, char *); struct auth_backend auth_backend_bsd = { auth_bsd, }; -int +static int auth_bsd(char *username, char *password) { return auth_userokay(username, NULL, "auth-smtp", password); -- cgit v1.2.3