Error loggin in BeOS - Mailing list pgsql-patches

From David Reid
Subject Error loggin in BeOS
Date
Msg-id 970926274_PM_BeOS.dreid@jetnet.co.uk
Whole thread Raw
Responses Re: Error loggin in BeOS  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-patches
This caused a segfault in BeOS.

Index: src/backend/utils/error/elog.c
===================================================================
RCS file:
/home/projects/pgsql/cvsroot/pgsql/src/backend/utils/error/elog.c,v
retrieving revision 1.63
diff -u -u -r1.63 elog.c
--- src/backend/utils/error/elog.c      2000/10/03 03:11:21     1.63
+++ src/backend/utils/error/elog.c      2000/10/07 12:47:02
@@ -144,6 +144,9 @@
                sprintf(errorstr_buf, "error %d", errno);
                errorstr = errorstr_buf;
        }
+#else
+    errorstr = strerror(errno);
+#endif /* __BEOS__ */

        if (lev == ERROR || lev == FATAL)
        {
@@ -182,9 +185,6 @@
                        prefix = prefix_buf;
                        break;
        }
-#else
-    errorstr = strerror(errno);
-#endif /* __BEOS__ */

        timestamp_size = 0;
        if (Log_timestamp)



pgsql-patches by date:

Previous
From: "David Reid"
Date:
Subject: [PATCH] BeOS support
Next
From: "David Reid"
Date:
Subject: Unix sockets on BeOS