~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - 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:
57
57
#include "plerror.h"
58
58
#include "plgetopt.h"
59
59
 
60
 
#ifdef XP_MAC
61
 
#include "prlog.h"
62
 
#define printf PR_LogPrint
63
 
#else
64
 
#endif
65
 
 
66
60
static PRFileDesc *t1;
67
61
PRIntn error_code;
68
62
 
88
82
        }
89
83
        nameTooLong[TOO_LONG - 1] = 0;
90
84
 
91
 
#ifdef XP_MAC
92
 
        SetupMacPrintfLog("pr_open_re.log");
93
 
#endif
94
 
        
95
85
    PR_STDIO_INIT();
96
86
        t1 = PR_Open(nameTooLong, PR_RDWR, 0666);
97
87
        if (t1 == NULL) {