This is the mail archive of the glibc-linux@ricardo.ecn.wfu.edu mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

rpcgen ERROR


hi

i'm using the rpcgen coming with the RedHat6.2( sorry i don't know where to
find the glibc version ), and it has a bug when using 64 bit integral
ypes( hyper ).
it doesn't know how to replace them( should became long long or something
like this ) so it leaves it unchanged, it even report error when trying to
use unsigned hyper.

e.g.
if i create a .x file with the following struct

struct data{
    unsigned long l;
    hyper h;
);

it will be create the .h file with

struct data{
    u_long l;
    hyper h;
};

and a .x file with
struct data{
    unsigned long l;
    unsigned hyper h;
);

will report an error msg when running rpcgen on it

is this a knowen bug?
is there a patch to it?
if no where can i find the sources, it should be no big deal to correct the
bug locacly

regards
/gabriel



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]