Skip to content

Commit 0281a0c

Browse files
author
Jan Mojžíš
committed
Merge pull request #11 from maruel/tweaks
http->https; silence gcc warning; add .gitignore; +x *.sh
2 parents 7d9527f + cba35fb commit 0281a0c

File tree

7 files changed

+6
-5
lines changed

7 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
See http://tinyssh.org/install.html
1+
See https://tinyssh.org/install.html

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
See http://tinyssh.org/
1+
See https://tinyssh.org/

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Priority: standard
44
#Build-Depends: debhelper, build-essential, make, libnacl-dev
55
Build-Depends: debhelper, build-essential, make
66
Maintainer: Jan Mojzis <jan.mojzis@gmail.com>
7-
Homepage: http://tinyssh.org/
7+
Homepage: https://tinyssh.org/
88

99
Package: tinyssh
1010
Section: net

make-install.sh

100644100755
File mode changed.

make-tinyssh.sh

100644100755
File mode changed.

tinyssh/tinysshd.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ static void timeout(int x) {
6969
static int selfpipe[2] = { -1, -1 };
7070

7171
static void trigger(int x) {
72-
errno = x = 0;
73-
write(selfpipe[1], "", 1);
72+
errno = 0;
73+
x = write(selfpipe[1], "", 1);
7474
}
7575

7676

0 commit comments

Comments
 (0)