butc: repair build error 11/13311/2
authorMark Vitale <mvitale@sinenomine.net>
Tue, 11 Sep 2018 20:29:59 +0000 (16:29 -0400)
committerBenjamin Kaduk <kaduk@mit.edu>
Tue, 11 Sep 2018 22:27:34 +0000 (18:27 -0400)
Commit c43169fd36348783b1a5a55c5bb05317e86eef82 introduced a build error
by invoking TLog with an extraneous set of internal parentheses.

Remove the offending parentheses.

Change-Id: Ibc52501b01ecbe9f86262566446d63e66486272f
Reviewed-on: https://gerrit.openafs.org/13311
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>

src/butc/tcmain.c

index c539939..cbd135b 100644 (file)
@@ -835,8 +835,8 @@ tc_IsLocalRealmMatch(void *rock, char *name, char *inst, char *cell)
 
     code = afsconf_IsLocalRealmMatch(dir, &islocal, name, inst, cell);
     if (code) {
-       TLog(0, ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
-                code, name, inst, cell));
+       TLog(0, "Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
+                code, name, inst, cell);
     }
     return islocal;
 }