OpenBSD CVS

CVS log for src/libexec/login_tis/Attic/login_tis.c


[BACK] Up to [local] / src / libexec / login_tis

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.14, Fri Nov 20 20:37:42 2015 UTC (8 years, 6 months ago) by millert
Branch: MAIN
CVS Tags: HEAD
Changes since 1.13: +1 -1 lines
FILE REMOVED

Remove login_tis, no one should be using the TIS authentication
server these days.

Revision 1.13 / (download) - annotate - [select for diffs], Mon Oct 5 17:31:17 2015 UTC (8 years, 7 months ago) by millert
Branch: MAIN
Changes since 1.12: +8 -8 lines
Diff to previous 1.12 (colored)

Use explicit_bzero() instead of memset() for zeroing out secrets.
OK deraadt@

Revision 1.12 / (download) - annotate - [select for diffs], Fri Jan 16 06:39:50 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible.  Annotate <sys/param.h> lines with their current reasons.  Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc.  Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution.  These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)

Revision 1.11 / (download) - annotate - [select for diffs], Tue Dec 4 02:24:47 2012 UTC (11 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.10: +1 -2 lines
Diff to previous 1.10 (colored)

remove some unnecessary sys/param.h inclusions

Revision 1.10 / (download) - annotate - [select for diffs], Fri Oct 15 10:18:42 2010 UTC (13 years, 7 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.9: +15 -15 lines
Diff to previous 1.9 (colored)

Switch the remaining users of libdes in src to libcrypto,
telnet portion partially from the latest heimdal.

ok mikeb@

Revision 1.9 / (download) - annotate - [select for diffs], Mon Mar 24 16:11:00 2008 UTC (16 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

msg_controllen has to be CMSG_SPACE so that the kernel can account for
each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len).  This
works now that kernel fd passing has been fixed to accept a bit of
sloppiness because of this ABI repair.
lots of discussion with kettenis

Revision 1.8 / (download) - annotate - [select for diffs], Sat Mar 15 16:19:02 2008 UTC (16 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Repair the simple cases for msg_controllen where it should just be
CMSG_SIZE(sizeof(int)), not sizeof(buffer) which may be larger because
of alignment; ok kettenis hshoexer

Revision 1.7 / (download) - annotate - [select for diffs], Thu Mar 13 01:49:52 2008 UTC (16 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.6: +7 -4 lines
Diff to previous 1.6 (colored)

Correct CMSG_SPACE and CMSG_LEN usage everywhere in the tree. Due to
an extensive discussion with otto, kettenis, millert, and hshoexer

Revision 1.6 / (download) - annotate - [select for diffs], Thu Jul 26 17:48:41 2007 UTC (16 years, 10 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored)

Remove the space after "Password:" in password prompts where echo is
turned off.  This is consistent with historic UNIX behavior.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Apr 10 20:50:12 2006 UTC (18 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.4: +1 -2 lines
Diff to previous 1.4 (colored)

incorrect freeaddrinfo() call on failure; mike.pechkin, otto ok

Revision 1.4 / (download) - annotate - [select for diffs], Sun Dec 18 16:06:09 2005 UTC (18 years, 5 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.3: +10 -11 lines
Diff to previous 1.3 (colored)

Fix some signed vs. unsigned issues found by lint.  OK krw@

Revision 1.3 / (download) - annotate - [select for diffs], Tue Mar 8 22:02:08 2005 UTC (19 years, 2 months ago) by cloder
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

Sweeping the tree for printf(s) where printf("%s",s) should be used.
OK millert

Revision 1.2 / (download) - annotate - [select for diffs], Tue Jan 4 18:24:33 2005 UTC (19 years, 5 months ago) by moritz
Branch: MAIN
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored)

add some snprintf sanity checks.

ok millert@, henning@

Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 28 15:02:01 2004 UTC (19 years, 8 months ago) by millert
Branch: MAIN

login script to provide TIS Firewall Toolkit authentication

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.