aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-02-19 01:19:48 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2012-02-19 01:41:01 +0100
commit8892bb3625a1f91f121fd98763a82c2cb0c0f67a (patch)
treea8007c0c5e029645e289eabfd6ecb50032e633e8 /src/io.c
parentc17b535a33f9388e7eb183c3e1a0971259f4a5e6 (diff)
downloadcalcurse-8892bb3625a1f91f121fd98763a82c2cb0c0f67a.tar.gz
calcurse-8892bb3625a1f91f121fd98763a82c2cb0c0f67a.zip
Remove all usages of bzero() and bcopy()
The bzero() and bcopy() functions are deprecated and were removed from the POSIX standard in IEEE Std. 1003.1-2008. Remove all usages of bzero()/bcopy() and replace them by appropriate memset()/memmove() calls. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io.c b/src/io.c
index 6c981d4..fde4fb9 100644
--- a/src/io.c
+++ b/src/io.c
@@ -1065,7 +1065,7 @@ get_import_stream (enum export_type type)
stream = NULL;
stream_name = mem_malloc (BUFSIZ);
- bzero (stream_name, BUFSIZ);
+ memset (stream_name, 0, BUFSIZ);
while (stream == NULL)
{
status_mesg (ask_fname, "");
@@ -1124,7 +1124,7 @@ io_import_data (enum import_type type, char *stream_name)
if (stream == NULL)
return;
- bzero (&stats, sizeof stats);
+ memset (&stats, 0, sizeof stats);
log = io_log_init ();
if (log == NULL)