[zaptel-commits] file: branch 1.2 r2296 - /branches/1.2/hpec/hpec_zaptel.h

zaptel-commits at lists.digium.com zaptel-commits at lists.digium.com
Thu Mar 8 08:56:05 MST 2007


Author: file
Date: Thu Mar  8 09:56:05 2007
New Revision: 2296

URL: http://svn.digium.com/view/zaptel?view=rev&rev=2296
Log:
vprintk is only available on 2.6.9+ (issue #9232 reported by baconbuttie)

Modified:
    branches/1.2/hpec/hpec_zaptel.h

Modified: branches/1.2/hpec/hpec_zaptel.h
URL: http://svn.digium.com/view/zaptel/branches/1.2/hpec/hpec_zaptel.h?view=diff&rev=2296&r1=2295&r2=2296
==============================================================================
--- branches/1.2/hpec/hpec_zaptel.h (original)
+++ branches/1.2/hpec/hpec_zaptel.h Thu Mar  8 09:56:05 2007
@@ -33,7 +33,7 @@
 	int res;
 	va_list args;
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,9)
 	va_start(args, format);
 	res = vprintk(format, args);
 	va_end(args);



More information about the zaptel-commits mailing list