From: suzuki toshiya Date: Fri, 7 Jun 2019 02:44:58 +0000 (+0000) Subject: remove unused to64() X-Git-Tag: v2.3.0~44^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce3f7bf3e99873d9fae2325835792b9c9cf805c2;p=thirdparty%2Fcups.git remove unused to64() --- 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 */