Re: Error loggin in BeOS - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: Error loggin in BeOS
Date
Msg-id 200010071449.KAA08412@candle.pha.pa.us
Whole thread Raw
In response to Error loggin in BeOS  ("David Reid" <dreid@jetnet.co.uk>)
List pgsql-patches
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

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [PATCH] BeOS support
Next
From: Bruce Momjian
Date:
Subject: Re: Unix sockets on BeOS