Make datetest buildable again
authorTom Yu <tlyu@mit.edu>
Thu, 9 Jul 2009 22:08:57 +0000 (22:08 +0000)
committerTom Yu <tlyu@mit.edu>
Thu, 9 Jul 2009 22:08:57 +0000 (22:08 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@22432 dc483132-0cff-0310-8789-dd5450dbe970

src/kadmin/cli/Makefile.in
src/kadmin/cli/getdate.y

index f023996862e378ebabbfc8c198b95070ce882086..68594c9bf7be8adcf1faff4d5da4f1e37c7ee606 100644 (file)
@@ -39,8 +39,9 @@ generate-files-mac: kadmin_ct.c getdate.c
 clean::
        $(RM) $(PROG).local $(PROG) $(COMMON_OBJS) $(KADMIN_OBJS) $(LOCAL_OBJS)
 clean-unix::
-       $(RM) getdate.c kadmin_ct.c
+       $(RM) datetest getdate.c kadmin_ct.c
 
 # for testing getdate.y
+# CC_LINK is not meant for compilation and this use may break in the future.
 datetest: getdate.c
-       $(CC) -o datetest $(ALL_CFLAGS) $(LDFLAGS) $(LDARGS) -DTEST getdate.c
+       $(CC_LINK) $(ALL_CFLAGS) -DTEST -o datetest getdate.c
index 530114598735797d171692ddc37a98552bedb90b..e427195befb725c03d7f39444bce532f7e44d3a5 100644 (file)
@@ -1053,7 +1053,7 @@ main(ac, av)
     (void)printf("Enter date, or blank line to exit.\n\t> ");
     (void)fflush(stdout);
     while (gets(buff) && buff[0]) {
-       d = get_date(buff, (struct my_timeb *)NULL);
+       d = get_date(buff);
        if (d == -1)
            (void)printf("Bad format - couldn't convert.\n");
        else