|
Check-in Number:
|
1423 | |
| Date: |
2001-Dec-13 15:34:17 (local)
2001-Dec-13 14:34:17 (UTC) |
| User: | simons |
| Branch: | |
| Comment: |
Variables that have no index specified are always looked up with index
zero now; the default index does no longer apply. |
| Tickets: |
|
| Inspections: |
|
| Files: |
|
ossp-pkg/var/var.c 1.45 -> 1.46
--- var.c 2001/12/12 17:18:55 1.45
+++ var.c 2001/12/13 14:34:17 1.46
@@ -705,7 +705,7 @@
size_t len, buffer_size;
int failed = 0;
int rc;
- int index = current_index;
+ int index = 0;
tokenbuf_t name;
tokenbuf_t tmp;
|
|