replaced frustrum with frustum
diff --git a/src/mesa/math/m_matrix.c b/src/mesa/math/m_matrix.c
index 856d0f5..5340403 100644
--- a/src/mesa/math/m_matrix.c
+++ b/src/mesa/math/m_matrix.c
@@ -1,10 +1,10 @@
-/* $Id: m_matrix.c,v 1.5 2001/01/05 05:31:42 keithw Exp $ */
+/* $Id: m_matrix.c,v 1.6 2001/02/05 18:48:52 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
  * Version:  3.5
  * 
- * Copyright (C) 1999-2000  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
  * 
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -646,10 +646,10 @@
 
 
 void
-_math_matrix_frustrum( GLmatrix *mat, 
-		       GLfloat left, GLfloat right,
-		       GLfloat bottom, GLfloat top, 
-		       GLfloat nearval, GLfloat farval )
+_math_matrix_frustum( GLmatrix *mat, 
+		      GLfloat left, GLfloat right,
+		      GLfloat bottom, GLfloat top, 
+		      GLfloat nearval, GLfloat farval )
 {
    GLfloat x, y, a, b, c, d;
    GLfloat m[16];