X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fgdc.c;h=9d88f5eb02ae574c7271f88995f4f3514d9ac0ed;hp=0a925b4ede04b4556865f4ff27a68a2f1ee5d328;hb=ea40e3c5ce946583369749843ad134c3cb607fc7;hpb=b6d0d9ad9e372e856f01a4c283cf784a15993903 diff --git a/test/gdc.c b/test/gdc.c index 0a925b4e..9d88f5eb 100644 --- a/test/gdc.c +++ b/test/gdc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2010,2012 Free Software Foundation, Inc. * + * Copyright (c) 1998-2012,2013 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 * @@ -33,7 +33,7 @@ * modified 10-18-89 for curses (jrl) * 10-18-89 added signal handling * - * $Id: gdc.c,v 1.35 2012/06/09 20:30:32 tom Exp $ + * $Id: gdc.c,v 1.37 2013/04/27 19:50:17 tom Exp $ */ #include @@ -60,7 +60,7 @@ static int sigtermed = 0; static bool redirected = FALSE; static bool hascolor = FALSE; -static RETSIGTYPE +static void sighndl(int signo) { signal(signo, sighndl); @@ -231,7 +231,7 @@ main(int argc, char *argv[]) drawbox(FALSE); do { - char buf[30]; + char buf[40]; time(&now); tm = localtime(&now); @@ -293,7 +293,7 @@ main(int argc, char *argv[]) } /* this depends on the detailed format of ctime(3) */ - (void) strcpy(buf, ctime(&now)); + (void) strncpy(buf, ctime(&now), 30); (void) strcpy(buf + 10, buf + 19); MvAddStr(16, 30, buf);