]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix unused assignment in mechglue loadConfigFile
authorGreg Hudson <ghudson@mit.edu>
Thu, 28 Mar 2013 06:24:05 +0000 (02:24 -0400)
committerGreg Hudson <ghudson@mit.edu>
Thu, 28 Mar 2013 06:24:05 +0000 (02:24 -0400)
src/lib/gssapi/mechglue/g_initialize.c

index 0d38105355ffdc9dd0f53284443785e27f9d7c0f..b801e122a29a5f73d7740b4c319e493a150e6511 100644 (file)
@@ -1230,7 +1230,7 @@ loadConfigFile(const char *fileName)
                /* Parse out the module type if present. */
                if (*next == '<') {
                        modType = next + 1;
-                       next = delimit(modType, '>');
+                       (void)delimit(modType, '>');
                } else {
                        modType = NULL;
                }