>>> On Tuesday 20 February 2007 23:20, Joe Morris (NTM) wrote:
>>>       
>>>> I know very little about this problem, so I will share what I know and
>>>> if anyone knows perl if you can give me a hint.  Problem is this line in
>>>> ddclient,
>>>> debug("glo fw = $globals{'fw'}");,
>>>>
>>>> which causes this error when run,
>>>> Use of uninitialized value in concatenation (.) or string at
>>>> /usr/sbin/ddclient line 1646.
>>>>         
Well, i found the "real" answer on the ddclient site at
http://sourceforge.net/forum/forum.php?thread_id=1677041&forum_id=399428
and it was a bug(let) in ddclient.  The fix for 3.7.1 is
@@ -1657,6 +1657,6 @@
 
     debug("server = $server");
-    debug("opt(fw = ",opt('fw'));
-    debug("glo fw = $globals{'fw'}");
+    opt('fw') && debug("opt(fw = ",opt('fw'),")");
+    $globals{'fw'} && debug("glo fw = $globals{'fw'}");
     #if ( $globals{'ssl'} and $server ne $globals{'fw'} ) {
     ## always omit SSL for connections to local router

-- 
Joe Morris
Registered Linux user 231871 running openSUSE 10.2 x86_64





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to