From f90f64b5c1a974a77a4bdf4a7ccb3f4d359b9127 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Sat, 12 Jul 2008 17:00:30 +0000 Subject: [PATCH] fill_passwd() doesn't have a return value --HG-- extra : convert_revision : ee6ec7346a5b4e7330f462ec9e4815f73038e8d0 --- svr-auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svr-auth.c b/svr-auth.c index 7fb6568..88909f3 100644 --- a/svr-auth.c +++ b/svr-auth.c @@ -203,7 +203,7 @@ out: m_free(methodname); } -static int fill_passwd(const char* username) { +static void fill_passwd(const char* username) { struct passwd *pw = NULL; if (ses.authstate.pw_name) m_free(ses.authstate.pw_name);