diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2013-01-27 03:56:50 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-01-27 03:56:50 +0000 |
commit | 7fa8a2666c1756459ac4c4c1a6325370ecbb0a61 (patch) | |
tree | cd4e70bb5b434886215e8e52b20054a4adc8c5ec | |
parent | 179334968fad6b63ae8c0ac33881e401325dae41 (diff) | |
download | screen-7fa8a2666c1756459ac4c4c1a6325370ecbb0a61.tar.gz |
Typo
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/patches/solaris-dev-console.patch | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 02bdf17..08d1b33 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +screen (4.1.0~20120320gitdb59704-7+dyson2) unstable; urgency=low + + * Fixed typo in solaris-dev-console.patch + + -- Igor Pashev <pashev.igor@gmail.com> Sun, 27 Jan 2013 03:56:41 +0000 + screen (4.1.0~20120320gitdb59704-7+dyson1) unstable; urgency=low * Built for Dyson: diff --git a/debian/patches/solaris-dev-console.patch b/debian/patches/solaris-dev-console.patch index 1c1fd04..29512ed 100644 --- a/debian/patches/solaris-dev-console.patch +++ b/debian/patches/solaris-dev-console.patch @@ -21,7 +21,7 @@ Index: screen/tty.sh - return 0; + + if (lstat(real, &st) || !S_ISCHR(st.st_mode) || -+ (st.st_nlink > 1 && strncmp(tty, "/dev/", 5))) ++ (st.st_nlink > 1 && strncmp(real, "/dev/", 5))) + rc = -1; + else + rc = 0; |