Skip to content

Commit

Permalink
Fix issue with fields trying to use wrong name (#12655)
Browse files Browse the repository at this point in the history
* Fix issue with fields trying to use wrong name

* Fix similar issue in winlean

* Revert accidental csize change

Co-authored-by: Clyybber <darkmine956@gmail.com>
Co-authored-by: ringabout <43030857+ringabout@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 26, 2022
1 parent 6b4ea88 commit 8051868
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/posix/posix_linux_amd64.nim
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ type
header: "<sys/socket.h>",
pure, final.} = object ## struct sockaddr_storage
ss_family*: TSa_Family ## Address family.
ss_padding: array[128 - sizeof(cshort) - sizeof(culong), char]
ss_align: clong
ss_padding {.importc: "__ss_padding".}: array[128 - sizeof(cshort) - sizeof(culong), char]
ss_align {.importc: "__ss_align".}: clong

Tif_nameindex* {.importc: "struct if_nameindex", final,
pure, header: "<net/if.h>".} = object ## struct if_nameindex
Expand Down
6 changes: 3 additions & 3 deletions lib/windows/winlean.nim
Original file line number Diff line number Diff line change
Expand Up @@ -505,9 +505,9 @@ type
Sockaddr_storage* {.importc: "SOCKADDR_STORAGE",
header: "winsock2.h".} = object
ss_family*: uint16
ss_pad1: array[6, byte]
ss_align: int64
ss_pad2: array[112, byte]
ss_pad1 {.importc: "__ss_pad1".}: array[6, byte]
ss_align {.importc: "__ss_align".}: int64
ss_pad2 {.importc: "__ss_pad2".}: array[112, byte]

Servent* = object
s_name*: cstring
Expand Down

0 comments on commit 8051868

Please sign in to comment.