~ubuntu-branches/ubuntu/lucid/openssl/lucid-proposed

« back to all changes in this revision

Viewing changes to crypto/rand/rand_unix.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-06-13 18:15:46 UTC
  • mto: (11.1.5 squeeze)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090613181546-vbfntai3b009dl1u
Tags: upstream-0.9.8k
ImportĀ upstreamĀ versionĀ 0.9.8k

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
                                t.tv_sec = 0;
233
233
                                t.tv_usec = usec;
234
234
 
235
 
                                if (FD_SETSIZE > 0 && fd >= FD_SETSIZE)
 
235
                                if (FD_SETSIZE > 0 && (unsigned)fd >= FD_SETSIZE)
236
236
                                        {
237
237
                                        /* can't use select, so just try to read once anyway */
238
238
                                        try_read = 1;