432
432
/* Don't escape hex constants */
433
433
if (object[0] == '0' && (object[1] == 'x' || object[1] == 'X'))
434
ptr= strxmov(ptr," ",statement," ",object,NULL);
434
ptr= strxmov(ptr," ",statement," ",object,NullS);
437
437
/* char constant; escape */
438
ptr= strxmov(ptr," ",statement," '",NULL);
438
ptr= strxmov(ptr," ",statement," '",NullS);
439
439
ptr= field_escape(ptr,object,(uint) strlen(object));