diff options
author | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:40:05 -0500 |
---|---|---|
committer | root <root@avtech.domain.avtechpulse.com> | 1999-12-31 19:40:05 -0500 |
commit | 988410d28b07ad3d6e2bb8747e34e123a3ea38ce (patch) | |
tree | 680476849f2b2aaffec358a7852e3cfec3790980 /parser.c | |
parent | 96152ffff82827c24bab64ce513c19df7383d75c (diff) |
force string eprom writes to upper case
Diffstat (limited to 'parser.c')
-rw-r--r-- | parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |