From: Greg Hudson Date: Sun, 13 May 2012 19:38:06 +0000 (-0400) Subject: Clean up a redundant assignment in libprofile X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6b0821452898d17058b4d3ac996cd50458b9fbed;p=krb5.git Clean up a redundant assignment in libprofile --- diff --git a/src/util/profile/prof_parse.c b/src/util/profile/prof_parse.c index 77c0adbd6..bcb88d277 100644 --- a/src/util/profile/prof_parse.c +++ b/src/util/profile/prof_parse.c @@ -47,8 +47,6 @@ static void parse_quoted_string(char *str) { char *to, *from; - to = from = str; - for (to = from = str; *from && *from != '"'; to++, from++) { if (*from == '\\') { from++;