Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code errors out:

 if (! defined $dchash{$location}) {
    die "Unrecognized realm: $location";
    }
 elsif ($dchash{$location}) ne $realm) {
    die "Incorrect realm for host in $location, expected $dchash{$location} got $realm";
    }

syntax error at ./test.pl line 73, near ") ne"
Execution of ./test.pl aborted due to compilation errors.

What is the proper syntax for verifying $realm is in the hash?

share|improve this question
1  
There is one ")" to much in you code. Remove it. – Lord Bo Dec 7 '12 at 0:23
-1 for not reading the very obvious error message you got... – pavel Dec 7 '12 at 12:03

1 Answer

up vote 6 down vote accepted

The first ) character on your elsif line is causing the problem. Removing that should eliminate that syntax error.

share|improve this answer
perfect :) thanks – Clustermagnet Dec 7 '12 at 0:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.