X-Git-Url: https://git.openafs.org/?p=openafs.git;a=blobdiff_plain;f=src%2Fexternal%2Fheimdal%2Fkrb5%2Fconfig_file.c;h=81f9c44e02c33c230c92cfa14fed44b7754ee80e;hp=13d07614b797d089de7a3b1beb48b83af8448ae0;hb=29ef47dfab86f7b226e0518b1365c27a8eb5126f;hpb=341d8bf1313434acf3acded90cfcffd575adc4e5 diff --git a/src/external/heimdal/krb5/config_file.c b/src/external/heimdal/krb5/config_file.c index 13d0761..81f9c44 100644 --- a/src/external/heimdal/krb5/config_file.c +++ b/src/external/heimdal/krb5/config_file.c @@ -877,12 +877,7 @@ next_component_string(char * begin, char * delims, char **state) end = begin; while (*end == '"') { - char * t; - while ((t = strchr(end + 1, '"')) != NULL && *(t - 1) == '\\') { - --t; - memmove(t, t + 1, strlen(t)); - end = t; - } + char * t = strchr(end + 1, '"'); if (t) end = ++t;