diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-26 14:43:30 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-26 14:43:30 +0200 |
commit | b9651f108b91776e565087dcdc2ac934b3483458 (patch) | |
tree | da6e829c913143f6e7fc77ebf40e16294d865795 /package/openafs/patches/patch-src_lwp_waitkey_c | |
parent | d08bbc851385b23b0491ceb78546cf0794daf149 (diff) | |
parent | d0cedd6214f7c35b73a22464c8688dbf9eb79f62 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/openafs/patches/patch-src_lwp_waitkey_c')
-rw-r--r-- | package/openafs/patches/patch-src_lwp_waitkey_c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/package/openafs/patches/patch-src_lwp_waitkey_c b/package/openafs/patches/patch-src_lwp_waitkey_c new file mode 100644 index 000000000..4cdc004a8 --- /dev/null +++ b/package/openafs/patches/patch-src_lwp_waitkey_c @@ -0,0 +1,37 @@ +--- openafs-1.6.5.orig/src/lwp/waitkey.c 2013-07-18 00:10:42.000000000 +0200 ++++ openafs-1.6.5/src/lwp/waitkey.c 2013-09-10 20:04:09.315133972 +0200 +@@ -158,34 +158,6 @@ LWP_WaitForKeystroke(int seconds) + struct timeval twait; + struct timeval *tp = NULL; + +-#ifdef AFS_LINUX20_ENV +- if (stdin->_IO_read_ptr < stdin->_IO_read_end) +- return 1; +-#else +-#if defined(AFS_DARWIN_ENV) || defined(AFS_XBSD_ENV) +-#if defined(AFS_DFBSD_ENV) +- struct appx_sbuf { +- unsigned char *_base; +- int _size; +- }; +- struct APPX_FILE +- { +- struct __FILE_public pub; +- struct appx_sbuf _bf; /* the buffer (at least 1 byte, if !NULL) */ +- }; +- struct APPX_FILE *appx_stdin = (struct APPX_FILE *) stdin; +- if (appx_stdin->_bf._size > 0) +- return 1; +-#else +- if (stdin->_bf._size > 0) +- return 1; +-#endif +-#else +- if (stdin->_cnt > 0) +- return 1; +-#endif +-#endif +- + FD_ZERO(&rdfds); + FD_SET(fileno(stdin), &rdfds); + |