Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-04 | MD5Update doesn't modify the data it's digesting | Philip Prindeville | |
So make that parameter be 'const' instead. | |||
2016-10-05 | Merge pull request #68 from pprindeville/more-cleanup | jeroennijhof | |
More factoring of the cleanup code for tac_connect_single | |||
2016-10-05 | Merge pull request #70 from jeroennijhof/fix-for-loop-initial-declarations | jeroennijhof | |
Don't init declarations in a for loop | |||
2016-10-05 | Don't init declarations in a for loop | Jeroen Nijhof | |
2016-10-05 | Merge pull request #69 from jeroennijhof/fix-travis-ci | jeroennijhof | |
Update .travis.yml | |||
2016-10-04 | More factoring of the cleanup code for tac_connect_single | Philip Prindeville | |
Commit 654b79e removed a very similar check, but with the new common exit strategy for this function, it is in fact possible to have fd be set without having copied fd into retval (i.e. retval still being set to an error value, which is negative). | |||
2016-10-05 | Update .travis.yml | jeroennijhof | |
2016-10-05 | Add Travis CI link to readme | jeroennijhof | |
2016-10-04 | Update README.md | jeroennijhof | |
2016-10-04 | Create .travis.yml | jeroennijhof | |
2016-10-04 | Merge pull request #63 from pprindeville/connect-cleanup | jeroennijhof | |
Exit tac_connect_single consistently via bottom of function | |||
2016-10-04 | Exit tac_connect_single consistently via bottom of function | Philip Prindeville | |
This is so that tracing is always the same, even when exceptions occur. | |||
2016-10-04 | Don't set these flags for AM_LDFLAGS since it breaks linking | Jeroen Nijhof | |
2016-10-04 | Merge pull request #64 from pprindeville/add-stricter-warnings | jeroennijhof | |
Turn on stricter compiler warnings | |||
2016-10-04 | Merge pull request #62 from pprindeville/fix-md5-build-damage | jeroennijhof | |
Fix build breakage when compiling without openssl-devel | |||
2016-10-04 | Merge pull request #60 from opengear/master | jeroennijhof | |
README.md formatting fixes | |||
2016-09-30 | Reflect tacc's dependency on openssl API | Philip Prindeville | |
Specifically, tacc calls RAND_pseudo_bytes() which is part of openssl, and without that we can't build it. | |||
2016-09-30 | If built against openssl/md5.h omit lib/md5.h from distribution | Philip Prindeville | |
Avoid any confusion which might arise from having the libraries be built against <openssl/md5.h> but shipping "lib/md5.h" anyway. | |||
2016-09-30 | Fix build breakage when compiling without openssl-devel | Philip Prindeville | |
Fix the prototyping in lib/md5.h. Accommodate the function name differences between lib/md5.h and the equivalent functions in openssl/md5.h. Accommodate replacement of MD5_LEN with MD5_LBLOCK (note that MD5_CBLOCK and MD5_DIGEST_LEN aren't referenced) and use this consistently. | |||
2016-09-30 | Let pam_tacplus find "magic.h" when building | Philip Prindeville | |
2016-09-29 | Turn on stricter compiler warnings | Philip Prindeville | |
And fix subsequent warnings caused by: - shadowed variables (i.e. variables existing in nested scopes); - signed vs. unsigned comparisons - string pointers and buffers being unsigned which don't need to be; - unnecessary casts; - unused variables (or only used when debugging is enabled); | |||
2016-09-20 | doc: fix formatting of example PAM config | Andrew Cooks | |
2016-09-20 | doc: fix link to tac_plus server | Andrew Cooks | |
2016-07-23 | source formatting | Paweł Krawczyk | |
2016-07-23 | initialize timelimit | Paweł Krawczyk | |
2016-07-23 | add Coverity target | Paweł Krawczyk | |
2016-07-23 | timeleft may be potentially used uninitialized | Paweł Krawczyk | |
2016-07-23 | dead assignment - 'a' is overwritten shortly after | Paweł Krawczyk | |
2016-07-23 | dead assignment - deltausecs is overwritten shortly after | Paweł Krawczyk | |
2016-07-23 | update badges | Paweł Krawczyk | |
2016-07-23 | URL fix | Paweł Krawczyk | |
2016-07-23 | current release badge | Paweł Krawczyk | |
2016-07-23 | fix download URL | Paweł Krawczyk | |
2016-07-23 | add GitHub releases badge | Paweł Krawczyk | |
2016-07-23 | fix linksv1.4.1 | Paweł Krawczyk | |
2016-07-23 | updates | Paweł Krawczyk | |
2016-07-23 | install tacc | Paweł Krawczyk | |
2016-07-23 | add Coverity dir | Paweł Krawczyk | |
2016-07-23 | add Eclipse files | Paweł Krawczyk | |
2016-07-23 | bump version to 1.4.1 | Paweł Krawczyk | |
2016-07-23 | check loop against TAC_PLUS_MAX_ARGCOUNT | Paweł Krawczyk | |
2016-07-23 | add ChangeLog | Paweł Krawczyk | |
2016-07-23 | update description | Paweł Krawczyk | |
2016-07-23 | check for max number of arguments passed in reply | Paweł Krawczyk | |
2016-07-23 | terminate tac_login buffer | Paweł Krawczyk | |
2016-07-23 | it's not Python... | Paweł Krawczyk | |
2016-07-23 | added support to set the tac_login global variable | Paweł Krawczyk | |
2016-07-23 | Fix warnings | Paweł Krawczyk | |
Fix various declaration inconsistencies that were throwing compiler warnings | |||
2016-07-22 | Rewrite the getrandom(2) usage | Paweł Krawczyk | |
The getrandom(2) is experimental (on Linux at least) and the presence of headers doesn't guarantee it's usable. It seems to be available from 3.17 kernels only as syscall. | |||
2016-07-22 | check for sys/random.h as well for Solaris | Paweł Krawczyk | |