commit | 03a8a79516715a29b79677d9afea80f5066a74a0 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Sun Jun 30 12:18:08 2013 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Sun Jun 30 12:18:08 2013 +0200 |
tree | 3e82434158dd3eee8e5e37103209e58bc835807b | |
parent | fd3eac578614ec43d077edbf9be3db9fef90a422 [diff] |
Programs adapted to use polarssl_strerror() instead of error_strerror()
diff --git a/programs/util/strerror.c b/programs/util/strerror.c index e248201..b8e69db 100644 --- a/programs/util/strerror.c +++ b/programs/util/strerror.c
@@ -65,7 +65,7 @@ if( ret != 0 ) { char error_buf[200]; - error_strerror( ret, error_buf, 200 ); + polarssl_strerror( ret, error_buf, 200 ); printf("Last error was: %d - %s\n\n", ret, error_buf ); }