summaryrefslogtreecommitdiff
path: root/parser.c
diff options
context:
space:
mode:
authorroot <root@avtech.domain.avtechpulse.com>1999-12-31 19:40:05 -0500
committerroot <root@avtech.domain.avtechpulse.com>1999-12-31 19:40:05 -0500
commit988410d28b07ad3d6e2bb8747e34e123a3ea38ce (patch)
tree680476849f2b2aaffec358a7852e3cfec3790980 /parser.c
parent96152ffff82827c24bab64ce513c19df7383d75c (diff)
force string eprom writes to upper case
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.c b/parser.c
index 2288685..b5d3a32 100644
--- a/parser.c
+++ b/parser.c
@@ -1183,7 +1183,7 @@ static int Go_Str_eprom_47(gchar** response, int channel, char *loc_string,char
if (store_string[i]=='~') {
store_string[i]=' ';
}
- *(char *)(&globals.Flash.flash_start + eprom_loc+i)=store_string[i];
+ *(char *)(&globals.Flash.flash_start + eprom_loc+i)=g_ascii_toupper(store_string[i]);
}
*(char *)(&globals.Flash.flash_start + eprom_loc + i)=(char) 0; /* end of string */
writeUserBlock(&globals.Flash, eprom_loc, strlen(store_string)+1);