summaryrefslogtreecommitdiffstats
path: root/src/util/profile
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2012-05-13 15:38:06 -0400
committerGreg Hudson <ghudson@mit.edu>2012-05-13 15:38:06 -0400
commit6b0821452898d17058b4d3ac996cd50458b9fbed (patch)
treec3fb6ffd818a22c3a17cc923b30f6a6d494138c5 /src/util/profile
parenteeba86d45ef4e13086b3f88cde863ddf8649f07b (diff)
downloadkrb5-6b0821452898d17058b4d3ac996cd50458b9fbed.tar.gz
krb5-6b0821452898d17058b4d3ac996cd50458b9fbed.tar.xz
krb5-6b0821452898d17058b4d3ac996cd50458b9fbed.zip
Clean up a redundant assignment in libprofile
Diffstat (limited to 'src/util/profile')
-rw-r--r--src/util/profile/prof_parse.c2
1 files changed, 0 insertions, 2 deletions
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++;