to fix problem on AIX; this should have worked anyway because of
the , operator but it is easy enough to force the solution, too.
[krb5-admin/41]
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9140
dc483132-0cff-0310-8789-
dd5450dbe970
+Thu Oct 3 18:17:36 1996 Barry Jaspan <bjaspan@mit.edu>
+
+ * kdb5_util.c (ARG_VAL): case second half of ?: operator to char *
+ to fix problem on AIX; this should have worked anyway because of
+ the , operator but it is easy enough to force the solution, too.
+ [krb5-admin/41]
+
Tue Sep 10 14:16:40 1996 Tom Yu <tlyu@mit.edu>
* kdb5_edit.M: remove extra args from .TH
int load_db(int, char **);
int dump_v4db(int, char **);
int load_v4db(int, char **);
+int open_db_and_mkey();
typedef int (*cmd_func)(int, char **);
return NULL;
}
-#define ARG_VAL (--argc > 0 ? optarg = *(++argv) : (usage(), NULL))
+#define ARG_VAL (--argc > 0 ? (optarg = *(++argv)) : (char *)(usage(), NULL))
int main(argc, argv)
int argc;
int open_db_and_mkey()
{
krb5_error_code retval;
- int nentries, i;
+ int nentries;
krb5_boolean more;
krb5_data scratch, pwd;