well, it was already fatal. at least now the error message is better.
authorivan <ivan>
Tue, 7 Feb 2006 13:49:44 +0000 (13:49 +0000)
committerivan <ivan>
Tue, 7 Feb 2006 13:49:44 +0000 (13:49 +0000)
FS/FS/svc_acct.pm

index c1851d3..759d737 100644 (file)
@@ -1077,7 +1077,10 @@ sub radius_check {
   my $password = $self->_password;
   my $pw_attrib = length($password) <= 12 ? $radius_password : 'Crypt-Password';  $check{$pw_attrib} = $password;
 
-  my $cust_pkg = $self->cust_svc->cust_pkg;
+  my $cust_svc = $self->cust_svc;
+  die "FATAL: no cust_svc record for svc_acct.svcnum ". $self->svcnum. "\n"
+    unless $cust_svc;
+  my $cust_pkg = $cust_svc->cust_pkg;
   if ( $cust_pkg && $cust_pkg->part_pkg->is_prepaid && $cust_pkg->bill ) {
     $check{'Expiration'} = time2str('%B %e %Y %T', $cust_pkg->bill ); #http://lists.cistron.nl/pipermail/freeradius-users/2005-January/040184.html
   }