Imported Debian patch 0.66.1-1
[hcoop/debian/courier-authlib.git] / authldapescape.c
index 9be9aa8..7756353 100644 (file)
@@ -16,7 +16,6 @@
 
 #include       "courierauth.h"
 
-static const char rcsid[]="$Id: authldapescape.c,v 1.2 2009/12/18 04:33:45 mrsam Exp $";
 
 static void escape_specials(const char *str,
                            char *bufptr,
@@ -57,7 +56,6 @@ char *courier_auth_ldap_escape(const char *str)
 {
        char *escaped;
        size_t escaped_cnt=1;
-       int rc;
 
        escape_specials(str, NULL, &escaped_cnt);
        escaped=malloc(escaped_cnt);