]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
remove unused to64() 5593/head
authorsuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
Fri, 7 Jun 2019 02:44:58 +0000 (02:44 +0000)
committersuzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
Fri, 7 Jun 2019 04:06:34 +0000 (04:06 +0000)
scheduler/auth.c

index e4c9157f59767880e5ca3bbbc8609976e2f89bc5..c910c131d4f446580e597c840e705f453d2bce1f 100644 (file)
@@ -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 */