Skip to content

Commit

Permalink
stdlib: Fix description of 'exdev' POSIX error
Browse files Browse the repository at this point in the history
  • Loading branch information
jhogberg committed May 15, 2023
1 parent 38174e5 commit f788d09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/kernel/doc/src/file.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,7 @@ f.txt: {person, "kalle", 25}.
<item><c>espipe</c> - Invalid seek</item>
<item><c>esrch</c> - No such process</item>
<item><c>estale</c> - Stale remote file handle</item>
<item><c>exdev</c> - Cross-domain link</item>
<item><c>exdev</c> - Cross-device link</item>
</list>
</section>

Expand Down
2 changes: 1 addition & 1 deletion lib/kernel/doc/src/inet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1997,7 +1997,7 @@ inet:setopts(Sock,[{raw,6,8,<<30:32/native>>}]),]]></code>
<item><c>eusers</c> - Too many users</item>
<item><c>eversion</c> - Version mismatch</item>
<item><c>ewouldblock</c> - Operation would block</item>
<item><c>exdev</c> - Cross-domain link</item>
<item><c>exdev</c> - Cross-device link</item>
<item><c>exfull</c> - Message tables full</item>
<item><c>nxdomain</c> - Hostname or domain name cannot be found</item>
</list>
Expand Down
2 changes: 1 addition & 1 deletion lib/stdlib/src/erl_posix_msg.erl
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ message_1(eunatch) -> <<"protocol driver not attached">>;
message_1(eusers) -> <<"too many users">>;
message_1(eversion) -> <<"version mismatch">>;
message_1(ewouldblock) -> <<"operation would block">>;
message_1(exdev) -> <<"cross-domain link">>;
message_1(exdev) -> <<"cross-device link">>;
message_1(exfull) -> <<"message tables full">>;
message_1(nxdomain) -> <<"non-existing domain">>;
message_1(exbadport) -> <<"inet_drv bad port state">>;
Expand Down

0 comments on commit f788d09

Please sign in to comment.