X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdemo_defkey.c;h=03c4d622576710ec95023085b0ff7e847a2c654b;hp=195ef544dea1ae9070bbe071c16aae08ac3cadb1;hb=e6f4ffe150c7d919792f29a70b4f031cfab5ef06;hpb=8f527f87c0b979d9c2598ef5c3394463af288468 diff --git a/test/demo_defkey.c b/test/demo_defkey.c index 195ef544..03c4d622 100644 --- a/test/demo_defkey.c +++ b/test/demo_defkey.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2002-2007,2008 Free Software Foundation, Inc. * + * Copyright (c) 2002-2008,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 * @@ -26,7 +26,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: demo_defkey.c,v 1.19 2008/08/04 16:24:47 tom Exp $ + * $Id: demo_defkey.c,v 1.21 2012/12/29 22:55:39 tom Exp $ * * Demonstrate the define_key() function. * Thomas Dickey - 2002/11/23 @@ -98,7 +98,7 @@ static char * visible(const char *string) { char *result = 0; - unsigned need = 1; + size_t need = 1; int pass; int n; @@ -106,7 +106,7 @@ visible(const char *string) for (pass = 0; pass < 2; ++pass) { for (n = 0; string[n] != '\0'; ++n) { char temp[80]; - strcpy(temp, visichar(string[n])); + strncpy(temp, visichar(string[n]), sizeof(temp) - 2); if (pass) strcat(result, temp); else