forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit47c93ac
committed
Fix portability failure introduced in commitsd2b0b60 et al.
I made a frontend fprintf() format use %m, forgetting that that's onlysafe in HEAD not the back branches; prior to96bf88d andd6c55de,it would work on glibc platforms but not elsewhere. Revert to using%s ... strerror(errno) as the code did before.We could have left HEAD as-is, but for code consistency across branches,I chose to apply this patch there too.Per Coverity and a few buildfarm members.1 parenta016f59 commit47c93ac
1 file changed
+2
-1
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
131 | 131 |
| |
132 | 132 |
| |
133 | 133 |
| |
134 |
| - | |
| 134 | + | |
| 135 | + | |
135 | 136 |
| |
136 | 137 |
| |
137 | 138 |
| |
|
0 commit comments
Comments
(0)