~ubuntu-branches/ubuntu/quantal/nspr/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/misc/prenv.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:
97
97
    _PR_UNLOCK_ENV();
98
98
    return (result)? PR_FAILURE : PR_SUCCESS;
99
99
}
100
 
 
101
 
/*
102
 
** DEPRECATED.  Use PR_SetEnv() instead.
103
 
*/
104
 
#ifdef XP_MAC
105
 
PR_IMPLEMENT(PRIntn) PR_PutEnv(const char *string)
106
 
{
107
 
    return (PR_SetEnv(string) == PR_SUCCESS) ? PR_TRUE : PR_FALSE;
108
 
}
109
 
#endif