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

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/tmocon.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:
72
72
#include <direct.h>
73
73
#endif
74
74
 
75
 
#ifdef XP_MAC
76
 
#include "prlog.h"
77
 
#define printf PR_LogPrint
78
 
#endif
79
 
 
80
75
 
81
76
#define BASE_PORT 9867
82
77
 
125
120
    {
126
121
        char *argv[3];
127
122
        char path[1024 + sizeof("/tmoacc")];
128
 
        (void)getcwd(path, sizeof(path));
 
123
 
 
124
        getcwd(path, sizeof(path));
 
125
 
129
126
        (void)strcat(path, "/tmoacc");
130
127
#ifdef XP_PC
131
128
        (void)strcat(path, ".exe");