445
445
/* Don't escape hex constants */
446
446
if (object[0] == '0' && (object[1] == 'x' || object[1] == 'X'))
447
ptr= strxmov(ptr," ",statement," ",object,NULL);
447
ptr+= sprintf(ptr, " %s %s", statement, object);
450
450
/* char constant; escape */
451
ptr= strxmov(ptr," ",statement," '",NULL);
452
452
ptr= field_escape(ptr,object,(uint) strlen(object));