~ubuntu-branches/ubuntu/jaunty/nspr/jaunty-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/acceptread.c

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-05-10 18:40:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100510184010-boghfzlm551mtoag
Tags: 4.8-0ubuntu0.9.04.1
* New upstream release: 4.8
  - Support updating NSS to 3.12.6 and fix CVE-2009-3555 aka 
    US-CERT VU#120541
* adjust patches to changed upstream codebase
  - update debian/patches/30_config_64bits.patch
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
static void ConnectingThread(void *arg)
66
66
{
67
67
    PRInt32 nbytes;
 
68
#ifdef SYMBIAN
 
69
    char buf[256];
 
70
#else
68
71
    char buf[1024];
 
72
#endif
69
73
    PRFileDesc *sock;
70
74
    PRNetAddr peer_addr, *addr;
71
75
 
182
186
        PL_FPrintError(err_out, "PR_Close (server) failed");
183
187
}  /* AcceptingThread */
184
188
 
185
 
PRIntn main(PRIntn argc, char **argv)
 
189
int main(int argc, char **argv)
186
190
{
187
191
    PRHostEnt he;
188
192
    PRStatus status;