]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 22 Jan 1999 14:14:28 +0000 (14:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 22 Jan 1999 14:14:28 +0000 (14:14 +0000)
* sysdeps/gnu/errlist.awk: Mark ENOTSUP as alias for EOPNOTSUPP.

ChangeLog
sysdeps/gnu/errlist.awk
sysdeps/gnu/errlist.c

index a049c634ffa4f40e9f7dd55c136a1000c2c04803..37c85c4c899d487cc73e84ec6755787c7706ea97 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-01-22  Ulrich Drepper  <drepper@cygnus.com>
 
+       * sysdeps/gnu/errlist.awk: Mark ENOTSUP as alias for EOPNOTSUPP.
+
        * iconv/gconv_conf.c (add_alias): Convert names to uppercase before
        adding into search tree.
        (add_module): Likewise.
index b40606a696551477312299490ec8bea3460d4919..b97f0789106204f8ac45a3f23238113eb6e510f0 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
+# Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -27,6 +27,7 @@
 BEGIN {
     alias["EWOULDBLOCK"] = "EAGAIN";
     alias["EDEADLOCK"] = "EDEADLK";
+    alias["ENOTSUP"] = "EOPNOTSUPP";
 
     print "/* This file is generated from errno.texi by errlist.awk.  */"
     print "";
index 80a7c88dc5726140b8214d1b428b7032b0cf38de..c718773d52508829446c400787252f72d363d1ea 100644 (file)
@@ -574,7 +574,7 @@ TRANS particular function will always fail with @code{ENOSYS} unless you
 TRANS install a new version of the C library or the operating system. */
     [ERR_REMAP (ENOSYS)] = N_("Function not implemented"),
 #endif
-#ifdef ENOTSUP
+#if defined (ENOTSUP) && ENOTSUP != EOPNOTSUPP
 /*
 TRANS Not supported.  A function returns this error when certain parameter
 TRANS values are valid, but the functionality they request is not available.
This page took 0.05159 seconds and 5 git commands to generate.