X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftrace%2Flib_trace.c;h=00431d489b9b60a9aed497fde729378d886495eb;hp=7aefe9dc1c91f599791c08944d919800ea86122b;hb=beb0f0c6911096ee19815bdf2601c4317d80341f;hpb=5e36f11feab6f790e0cc6f2c882a67b7b65e3b6b;ds=sidebyside diff --git a/ncurses/trace/lib_trace.c b/ncurses/trace/lib_trace.c index 7aefe9dc..00431d48 100644 --- a/ncurses/trace/lib_trace.c +++ b/ncurses/trace/lib_trace.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. * + * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -47,7 +47,7 @@ #include -MODULE_ID("$Id: lib_trace.c,v 1.78 2011/12/17 18:41:48 tom Exp $") +MODULE_ID("$Id: lib_trace.c,v 1.81 2012/04/29 00:20:43 tom Exp $") NCURSES_EXPORT_VAR(unsigned) _nc_tracing = 0; /* always define this */ @@ -103,9 +103,9 @@ trace(const unsigned int tracelevel) } TracePath[size] = '\0'; assert(strlen(TracePath) <= size); - strcat(TracePath, "/trace"); + _nc_STRCAT(TracePath, "/trace", sizeof(TracePath)); if (_nc_is_dir_path(TracePath)) { - strcat(TracePath, ".log"); + _nc_STRCAT(TracePath, ".log", sizeof(TracePath)); } } @@ -229,7 +229,7 @@ NCURSES_EXPORT(char) _nc_retrace_char(int code) { T((T_RETURN("%c"), code)); - return code; + return (char) code; } /* Trace 'int' return-values */