Project

General

Profile

Actions

Bug #1003

closed

[pwd.h] [struct passwd] member field pw_gecos is missed

Added by Vitaly M. almost 9 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
High
Assignee:
Category:
libcrystax
Target version:
Start date:
07/12/2015
Due date:
% Done:

100%

Estimated time:
CPU Architecture:
Host OS:
Toolchain:
Android version:
CrystaX NDK Version:

Description

passwd struct inside crystax-ndk looks like:
struct passwd
{
char* pw_name;
char* pw_passwd;
uid_t pw_uid;
gid_t pw_gid;
char* pw_dir;
char* pw_shell;
};

At the same time for desktop platforms this struct usually looks like the following:
struct passwd
{
char* pw_name;
char* pw_passwd;
__uid_t pw_uid;
__gid_t pw_gid;
char* pw_gecos;
char* pw_dir;
char* pw_shell;
};

So 'pw_gecos' field is missing,
as result it gives some obstacles to port python3 for Android

Actions #1

Updated by Dmitry M. almost 9 years ago

  • Category set to libcrystax
  • Assignee set to Dmitry M.
  • Priority changed from Normal to High
  • Target version set to 10.3.0
Actions #2

Updated by Dmitry M. almost 9 years ago

  • Status changed from Open to In Progress
Actions

Also available in: Atom PDF