diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-07 16:50:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-07 16:50:11 +0000 |
commit | d8f02c5c3a7867736e6e5345699f1bf760772891 (patch) | |
tree | 2ce69c876e06a042f93ee77a7b2d99f8f412d8ae | |
parent | 8f8f0254b217fad5a4fe7775af7bbf3f4206f80e (diff) | |
download | coreutils-d8f02c5c3a7867736e6e5345699f1bf760772891.tar.xz |
(xputenv): Invoke xalloc_die instead of printing our own message.
-rw-r--r-- | src/su.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ static void xputenv (const char *val) { if (putenv (val)) - error (1, 0, _("virtual memory exhausted")); + xalloc_die (); } /* Return a newly-allocated string whose contents concatenate |