Skip to content

Commit

Permalink
Suppress the "UNLOCKED" message on AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonjh committed Aug 4, 2022
1 parent 12f31da commit 5f79c31
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ msgq_status(SCR *sp, recno_t lno, unsigned int flags)
p += len;
needsep = 1;
}
#ifndef _AIX
if (F_ISSET(sp->frp, FR_UNLOCKED)) {
if (needsep) {
*p++ = ',';
Expand All @@ -434,6 +435,7 @@ msgq_status(SCR *sp, recno_t lno, unsigned int flags)
p += len;
needsep = 1;
}
#endif /* ifndef _AIX */
if (O_ISSET(sp, O_READONLY)) {
if (needsep) {
*p++ = ',';
Expand Down

0 comments on commit 5f79c31

Please sign in to comment.