From eef036df235b7fb16b57bb78daf6f7e590d8e6d6 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 6 Sep 2006 16:35:52 +0000 Subject: The big Assuan error code removal. --- sm/certreqgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sm/certreqgen.c') diff --git a/sm/certreqgen.c b/sm/certreqgen.c index 9ca16017d..e1006753e 100644 --- a/sm/certreqgen.c +++ b/sm/certreqgen.c @@ -606,7 +606,7 @@ create_request (ctrl_t ctrl, buf = xtrymalloc (strlen (s) + 3); if (!buf) { - rc = OUT_OF_CORE (errno); + rc = out_of_core (); goto leave; } *buf = '<'; @@ -631,7 +631,7 @@ create_request (ctrl_t ctrl, buf = p = xtrymalloc (11 + strlen (numbuf) + len + 3); if (!buf) { - rc = OUT_OF_CORE (errno); + rc = out_of_core (); goto leave; } p = stpcpy (p, "(8:dns-name"); @@ -658,7 +658,7 @@ create_request (ctrl_t ctrl, buf = p = xtrymalloc (6 + strlen (numbuf) + len + 3); if (!buf) { - rc = OUT_OF_CORE (errno); + rc = out_of_core (); goto leave; } p = stpcpy (p, "(3:uri"); -- cgit v1.2.3