|
From: K.S.Chen <ks...@bi...> - 2002-04-29 01:03:16
|
Hi, In linux-2.4.8-abi/abi/solaris/lfs.c, fl_ibcs_to_linux[] is used but never defined elsewhere. Please comment if following patch is correct. thanks K.S.Chen diff -Nru linux/abi/solaris/lfs.c linux-2.4.18/abi/solaris/lfs.c --- linux/abi/solaris/lfs.c Mon Apr 29 09:01:36 2002 +++ linux-2.4.18/abi/solaris/lfs.c Sun Apr 28 16:53:24 2002 @@ -21,8 +21,7 @@ #include <abi/util/map.h> -extern unsigned short fl_ibcs_to_linux[]; -extern unsigned short fl_ibcs_to_linux[]; +extern unsigned short fl_svr4_to_linux[]; int @@ -35,7 +34,7 @@ char *p; struct sockaddr_un addr; - fd = sys_open(fname, map_flags(flag, fl_ibcs_to_linux) | O_LARGEFILE, mode); + fd = sys_open(fname, map_flags(flag, fl_svr4_to_linux) | O_LARGEFILE, mode); if (fd < 0) return fd; |