1
0
mirror of https://github.com/yarrick/iodine.git synced 2024-12-01 17:36:10 +03:00

Compare commits

..

No commits in common. "b82bc776b36b727f593f98e43cbd306a9f6358fc" and "6145eeab738c45dc66958f590f6439fbf3c401f2" have entirely different histories.

4 changed files with 2 additions and 56 deletions

View File

@ -1,25 +0,0 @@
name: freebsd
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: make
uses: vmactions/freebsd-vm@v0
with:
prepare: |
pkg install -y \
devel/check \
devel/git \
devel/pkgconf
run: |
make
make test

View File

@ -1,25 +0,0 @@
name: openbsd
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: make
uses: vmactions/openbsd-vm@v0
with:
prepare: |
pkg_add \
check \
git \
pkgconf
run: |
make
make test

View File

@ -1,14 +1,10 @@
iodine - https://code.kryo.se/iodine
************************************
***********************************
CHANGES:
master:
- Changed deprecated tzsetwall() to tzset() (only used by FreeBSD),
patch by Pouria Mousavizadeh Tehrani.
2023-04-17: 0.8.0 "Burning Snowman"
- Mac OS X: Support native utun VPN devices. Patch by
Peter Sagerson, ported from OpenVPN by Catalin Patulea.

View File

@ -2754,7 +2754,7 @@ main(int argc, char **argv)
do_pidfile(pidfile);
#ifdef FREEBSD
tzset();
tzsetwall();
#endif
#ifndef WINDOWS32
openlog(__progname, LOG_NDELAY, LOG_DAEMON);