svn commit: samba r8203 - in branches/SAMBA_4_0/source/build/pidl: .

metze at samba.org metze at samba.org
Thu Jul 7 11:16:26 GMT 2005


Author: metze
Date: 2005-07-07 11:16:25 +0000 (Thu, 07 Jul 2005)
New Revision: 8203

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8203

Log:
fix the build temporary,

we also get perl warnings uninitialized value used in ejs.pm line 26

metze
Modified:
   branches/SAMBA_4_0/source/build/pidl/ejs.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/pidl/ejs.pm
===================================================================
--- branches/SAMBA_4_0/source/build/pidl/ejs.pm	2005-07-07 11:10:04 UTC (rev 8202)
+++ branches/SAMBA_4_0/source/build/pidl/ejs.pm	2005-07-07 11:16:25 UTC (rev 8203)
@@ -197,7 +197,7 @@
 	} elsif ($d->{DATA}->{TYPE} eq 'ENUM') {
 		EjsEnumPull($d->{NAME}, $d->{DATA});
 	} else {
-		die "Unhandled pull typedef $d->{NAME} of type $d->{TYPE}\n";
+		warn "Unhandled pull typedef $d->{NAME} of type $d->{TYPE}\n";
 	}
 }
 
@@ -355,7 +355,7 @@
 	} elsif ($d->{DATA}->{TYPE} eq 'ENUM') {
 		EjsEnumPush($d->{NAME}, $d->{DATA});
 	} else {
-		die "Unhandled push typedef $d->{NAME} of type $d->{TYPE}\n";
+		warn "Unhandled push typedef $d->{NAME} of type $d->{TYPE}\n";
 	}
 }
 



More information about the samba-cvs mailing list