summary refs log tree commit diff
path: root/catgets/catgets.c
diff options
context:
space:
mode:
Diffstat (limited to 'catgets/catgets.c')
-rw-r--r--catgets/catgets.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/catgets/catgets.c b/catgets/catgets.c
index ca0fdd693c..eae962ffd7 100644
--- a/catgets/catgets.c
+++ b/catgets/catgets.c
@@ -41,7 +41,7 @@ catopen (const char *cat_name, int flag)
 
   result->status = closed;
 
-  result->cat_name = strdup (cat_name);
+  result->cat_name = __strdup (cat_name);
   if (result->cat_name == NULL)
     {
       free (result);
@@ -71,7 +71,7 @@ catopen (const char *cat_name, int flag)
 	    env_var = "C";
 	}
 
-      result->env_var = strdup (env_var);
+      result->env_var = __strdup (env_var);
       if (result->env_var == NULL)
 	{
 	  free ((void *) result->cat_name);
@@ -80,9 +80,9 @@ catopen (const char *cat_name, int flag)
 	}
 
       if (getenv ("NLSPATH") != NULL)
-	result->nlspath = strdup (getenv ("NLSPATH"));
+	result->nlspath = __strdup (getenv ("NLSPATH"));
       else
-	result->nlspath = strdup (NLSPATH);
+	result->nlspath = __strdup (NLSPATH);
 
       if (result->nlspath == NULL)
 	{