From 10a89ef04df5669c5cdd02f786150a7ab8454e01 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 24 Jun 2013 10:54:49 -0700 Subject: Replace all uses of strerror() by ovs_strerror(), for thread safety. Signed-off-by: Ben Pfaff --- lib/json.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/json.c') diff --git a/lib/json.c b/lib/json.c index af385c695..56dc5ef72 100644 --- a/lib/json.c +++ b/lib/json.c @@ -1026,7 +1026,8 @@ json_from_file(const char *file_name) stream = fopen(file_name, "r"); if (!stream) { return json_string_create_nocopy( - xasprintf("error opening \"%s\": %s", file_name, strerror(errno))); + xasprintf("error opening \"%s\": %s", file_name, + ovs_strerror(errno))); } json = json_from_stream(stream); fclose(stream); @@ -1063,7 +1064,7 @@ json_from_stream(FILE *stream) if (ferror(stream)) { json_destroy(json); json = json_string_create_nocopy( - xasprintf("error reading JSON stream: %s", strerror(errno))); + xasprintf("error reading JSON stream: %s", ovs_strerror(errno))); } return json; -- cgit v1.2.1