History log of /external/ltp/pan/tag_report.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
87aa2dc20992208fd7478d14425c1e395a57e0c4 11-Apr-2014 Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> lib, tools, pan: old-style function definition fixes

No functional changes. No "cleanup". Just fixes for
"old-style function definition" compile warnings.

Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
/external/ltp/pan/tag_report.c
f56e615d4b0b931a104c3daa0f4ed62a2c6a3e2c 21-Mar-2013 Jan Stancek <jstancek@redhat.com> pan: fix potential overrun in tag_report

char *cuts_info[5];
...
while (tok_num < 5 &&
(cuts_info[++tok_num] = strtok(NULL, "\t ")) != NULL) ;

While above can run for tok_num == 4, in which case:
cuts_info[++tok_num] becomes cuts_info[5]
and that is outside of cuts_info array.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/pan/tag_report.c
354ebb48db8e66a853a58379a4808d5dcd1ceac3 07-Dec-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> cleanup code indent

Cleanup the code indent using:

find . -name *.c -exec Lindent {} \;

It's really a big change, but can fix almost all of
the indent problem in C code, although we can't
ensure all of the changes are right, but the error
changes are really few.

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/pan/tag_report.c
fed9641096e27f79a0f2d9adfe9839dd8d11dc0f 24-Oct-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> Fix FSF address

find . -type f -exec sed -i 's/the Free Software Foundation, Inc., 59/the Free Software Foundation, Inc.,/g;s/Temple Place - Suite 330, Boston MA 02111-1307, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/pan/tag_report.c
6ea8c5bcc68371c15538a78b720f565931cb20d1 23-Feb-2011 Garrett Cooper <yanegomi@gmail.com> Clean up pan a bit.

1. malloc.h is obsolete for malloc(3), et all.
2. Fix some compile-time warnings.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/pan/tag_report.c
1e6f5a673655551de5734ff31ef48cd63b604e6d 19-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Resolving all compile errors via a script

This may leave dupe calls to tst_exit in main, but those are easier
to deal (and much less) than no-compile scenarios.

As a side-effect, fix all trailing whitespace issues.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/pan/tag_report.c
903910df985927e941076692964ab88d691c8ccb 23-Nov-2010 Garrett Cooper <yanegomi@gmail.com> More cleanup.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/pan/tag_report.c
9e78ade7d6c596a709d0228909bd5d37a85cf4a5 13-Dec-2006 vapier <vapier> do not use variable names the same as system functions (like stime() or utime())
/external/ltp/pan/tag_report.c
f558990ac3f93adbf55881b01bda52b41292667a 21-Sep-2000 alaffin <alaffin> Release scanner.
/external/ltp/pan/tag_report.c