1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
2013-07-31 Timur Birsh <taem@linukz.org>
Use SHA-256 hash function
MD5 is considered cryptographically broken.
Please see http://www.kb.cert.org/vuls/id/836068.
SHA-256 implementation is taken from PolarSSL and distributed
under the terms GNU General Public License Version 2 or later.
Please see https://polarssl.org.
2013-07-30 Timur Birsh <taem@linukz.org>
'--help' option should terminate program with the success exit code
Add '--version' option
Add '--help' option
Use groff's mdoc macro
2013-07-27 Timur Birsh <taem@linukz.org>
Add GNU-style change log
2013-07-26 Timur Birsh <taem@linukz.org>
Use Markdown format
2013-07-25 Timur Birsh <taem@linukz.org>
Update copyright notice
Add license file 'COPYING'
Add /media and /sys to 'EXCLUDE' option
Check for sxid binary before executing it
Binary should be install in bindir
Add 'autogen.sh' to distribution
Rename 'source' dir as 'src'
Add 'autogen.sh' script
It runs 'autoreconf' to populate autotools files.
Ignore some autotools files
Update autoconf settings to version 2.69 and use automake 1.13.3
2013-05-28 Timur Birsh <taem@linukz.org>
Move sxid.{conf,cron} to examples dir
Move rpm spec to contrib dir
Remove empty TODO
2013-05-24 Timur Birsh <taem@linukz.org>
Polish manpages
2013-05-21 Timur Birsh <taem@linukz.org>
Remove .example extension
2012-10-10 Timur Birsh <taem@linukz.org>
In get_value() signature, swap 'key' and 'value' arguments
Move 'count' variable declaration into the while loop
Get error string by strerror()
Rename 'temp' variable to 'value'
Use access() for checking config file
Refactor get_value() little a bit
Remove unused optindex variable
2012-10-09 Timur Birsh <taem@linukz.org>
Use memset() instead of the legacy bzero()
Use EXIT_FAILURE macros
Fix compilation warnings
gcc -g -O2 -I. -c conffile.c -o conffile.o
conffile.c: In function ‘get_value’:
conffile.c:50:32: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
conffile.c:50:29: warning: comparison between pointer and integer [enabled by default]
conffile.c:51:34: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
conffile.c:51:31: warning: comparison between pointer and integer [enabled by default]
Add .gitignore
Use Linux kernel coding style
2009-10-09 Timur Birsh <taem@linukz.org>
Fix manpage error
|