diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-03-02 16:01:22 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-03-02 16:01:22 +0000 | 
| commit | eb2b63877a5554ac0a5c9e4653f0a695560cf249 (patch) | |
| tree | b595b18e0fc6cbe08054113552e8aac6c2ef83dc | |
| parent | 6a2d72ecff29038a131bc4b4609e7368950dec96 (diff) | |
fixed _mesa_getenv() weirdness
| -rw-r--r-- | src/mesa/main/imports.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index e36f7a24b0..6e0741ab91 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -1,10 +1,10 @@ -/* $Id: imports.c,v 1.5 2001/02/06 04:06:35 keithw Exp $ */ +/* $Id: imports.c,v 1.6 2001/03/02 16:01:22 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"), @@ -104,7 +104,7 @@ static char *  _mesa_getenv(__GLcontext *gc, const char *var)  {     (void) gc; -   return gc->imports.getenv(gc, var); +   return getenv(var);  }  static int | 
