X-Git-Url: https://git.hcoop.net/hcoop/debian/courier-authlib.git/blobdiff_plain/8d138742ae268344f406cb75d79aa6bf853f9d87..b0322a8536f3cab76471c98122fe1df75bb7c387:/authldapescape.c diff --git a/authldapescape.c b/authldapescape.c index 9be9aa8..7756353 100644 --- a/authldapescape.c +++ b/authldapescape.c @@ -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);