Error loggin in BeOS

Started by David Reidalmost 26 years ago2 messagespatches
Jump to latest
#1David Reid
dreid@jetnet.co.uk

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)

#2Bruce Momjian
bruce@momjian.us
In reply to: David Reid (#1)
Re: Error loggin in BeOS

It appears this is already applied.

[ Charset ISO-8859-1 unsupported, converting... ]

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)

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026