+Fri Aug 23 14:17:42 1996 Sam Hartman <hartmans@mit.edu>
+
+ * Makefile.in (install): Install in bin not sbin.
+
Thu Aug 15 19:30:18 1996 Tom Yu <tlyu@mit.edu>
* configure.in: Add USE_KDB5_LIBRARY to pick up -ldb. Recent
$(CC) $(LDFLAGS) $(LDARGS) -o $(PROG) $(OBJS) $(CLNTLIBS)
install::
- $(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(ADMIN_BINDIR)/$(PROG)
+ $(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(BINDIR)/$(PROG)
clean::
$(RM) kpasswd_strings.c kpasswd_strings.h $(PROG) $(OBJS)
+Fri Aug 23 14:22:45 1996 Sam Hartman <hartmans@tertius.mit.edu>
+
+ * kerberos_v4.c (check_princ): Assume an expiration date of zero means never expire.
+
Thu Aug 1 11:13:46 1996 Ezra Peisach <epeisach@dumpster.rose.brandeis.edu>
* configure.in (withval): Link -ldyn as it is needed by the kadm5
return KERB_ERR_NULL_KEY;
}
/* make sure the service hasn't expired */
- if ((u_long) p->exp_date < (u_long) kerb_time.tv_sec) {
+ if (((u_long) p->exp_date != 0)&&
+ ((u_long) p->exp_date <(u_long) kerb_time.tv_sec)) {
/* service did expire, log it */
lt = klog(L_ERR_SEXP,
"EXPIRED \"%s\" \"%s\" %s", p->name, p->instance,