]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
butc: repair build error
authorMark Vitale <mvitale@sinenomine.net>
Tue, 11 Sep 2018 20:29:59 +0000 (16:29 -0400)
committerStephan Wiesand <stephan.wiesand@desy.de>
Fri, 14 Dec 2018 14:55:30 +0000 (09:55 -0500)
Commit c43169fd36348783b1a5a55c5bb05317e86eef82 introduced a build error
by invoking TLog with an extraneous set of internal parentheses.

Remove the offending parentheses.

Reviewed-on: https://gerrit.openafs.org/13311
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 91bab84e7a3b7de2591c475ba4912b0db8899f05)

Change-Id: I06df561daf37330e6fdd9c9d41b55daa4d6b3886
Reviewed-on: https://gerrit.openafs.org/13328
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Michael Meffie <mmeffie@sinenomine.net>
Reviewed-by: Marcio Brito Barbosa <mbarbosa@sinenomine.net>
Reviewed-by: Cheyenne Wills <cwills@sinenomine.net>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
src/butc/tcmain.c

index c5399396ee1d0611714aa2ee0a11cc2c95016a35..cbd135b09c2def85d8fae2b609666d83fdd5e46b 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;
 }