aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstroese <stroese>2003-07-11 08:00:33 +0000
committerstroese <stroese>2003-07-11 08:00:33 +0000
commit155cb0104a9dc2924e209c8d0279f1da295b4d01 (patch)
tree45e77842c2120bfad3640eb380a88384caa9fb13
parentf12e568ca45f6c56b5a6d52a43524987e141abe7 (diff)
- Fix bug in CONFIG_VERSION_VARIABLE.
-rw-r--r--common/cmd_nvedit.c3
-rw-r--r--common/main.c4
2 files changed, 1 insertions, 6 deletions
diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c
index bfc69bdb4..53df582cf 100644
--- a/common/cmd_nvedit.c
+++ b/common/cmd_nvedit.c
@@ -183,9 +183,6 @@ int _do_setenv (int flag, int argc, char *argv[])
* ver is readonly.
*/
if ( (strcmp (name, "serial#") == 0) ||
-#if defined(CONFIG_VERSION_VARIABLE)
- (strcmp (name, "ver") == 0) ||
-#endif /* CONFIG_VERSION_VARIABLE */
((strcmp (name, "ethaddr") == 0)
#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
&& (strcmp (env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
diff --git a/common/main.c b/common/main.c
index f7830a1f3..5ddecca73 100644
--- a/common/main.c
+++ b/common/main.c
@@ -284,10 +284,8 @@ void main_loop (void)
#ifdef CONFIG_VERSION_VARIABLE
{
extern char version_string[];
- char *str = getenv("ver");
- if (!str)
- setenv ("ver", version_string); /* set version variable */
+ setenv ("ver", version_string); /* set version variable */
}
#endif /* CONFIG_VERSION_VARIABLE */