Removed the experimental change. It did not cause the intermittent QA

failures on the "aix64" tinderbox to go away.


git-svn-id: svn://10.0.0.236/trunk@140085 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com 2003-03-23 00:16:43 +00:00
parent c160491f19
commit 4e2185eea8

View File

@ -34,7 +34,7 @@
/*
* Test program for SDR (Secret Decoder Ring) functions.
*
* $Id: shlibsign.c,v 1.8 2003-03-22 07:52:25 wtc%netscape.com Exp $
* $Id: shlibsign.c,v 1.9 2003-03-23 00:16:43 wtc%netscape.com Exp $
*/
#ifdef XP_UNIX
@ -55,7 +55,6 @@
#include "pk11pqg.h"
#ifdef USES_LINKS
#include <errno.h>
#include <unistd.h>
#include <sys/param.h>
#include <sys/types.h>
@ -394,8 +393,9 @@ main (int argc, char **argv)
#ifdef USES_LINKS
if (link_file) {
(void)unlink(link_file);
ret = symlink(output_file, link_file);
if (ret < 0 && errno != EEXIST) {
if (ret < 0) {
perror(link_file);
goto loser;
}