From ce3f7bf3e99873d9fae2325835792b9c9cf805c2 Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Fri, 7 Jun 2019 02:44:58 +0000 Subject: [PATCH] remove unused to64() --- scheduler/auth.c | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/scheduler/auth.c b/scheduler/auth.c index e4c9157f59..c910c131d4 100644 --- a/scheduler/auth.c +++ b/scheduler/auth.c @@ -67,8 +67,6 @@ static void free_authmask(cupsd_authmask_t *am, void *data); #if HAVE_LIBPAM static int pam_func(int, const struct pam_message **, struct pam_response **, void *); -#else -static void to64(char *s, unsigned long v, int n); #endif /* HAVE_LIBPAM */ @@ -2068,24 +2066,4 @@ pam_func( return (PAM_SUCCESS); } -#else - - -/* - * 'to64()' - Base64-encode an integer value... - */ - -static void -to64(char *s, /* O - Output string */ - unsigned long v, /* I - Value to encode */ - int n) /* I - Number of digits */ -{ - const char *itoa64 = "./0123456789" - "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "abcdefghijklmnopqrstuvwxyz"; - - - for (; n > 0; n --, v >>= 6) - *s++ = itoa64[v & 0x3f]; -} #endif /* HAVE_LIBPAM */ -- 2.47.2