+2002-07-30 Ezra Peisach <epeisach@bu.edu>
+
+ * kinit.c (ULINE): Invoke fprintf with correct number of arguments
+ depending on if V4 support is compiled in or not.
+
2002-07-17 Jen Selby <jenselby@mit.edu>
* kinit.M: added documentation of the "-a" option
#ifdef KRB5_KRB4_COMPAT
#define USAGE_OPT_FMT "%s%-50s%s\n"
+#define ULINE(indent, col1, col2) \
+fprintf(stderr, USAGE_OPT_FMT, indent, col1, col2)
#else
#define USAGE_OPT_FMT "%s%s\n"
-#endif
-
#define ULINE(indent, col1, col2) \
-fprintf(stderr, USAGE_OPT_FMT, indent, col1, col2)
+fprintf(stderr, USAGE_OPT_FMT, indent, col1)
+#endif
ULINE(" ", "options:", "valid with Kerberos:");
fprintf(stderr, "\t-5 Kerberos 5 (%s)\n", KRB_AVAIL_STRING(got_k5));