File:  [DVB] / dietlibc / libugly / putpwent.c
Revision 1.3: download - view: text, annotated - select for diffs
Sat Feb 9 00:45:19 2002 UTC (22 years, 4 months ago) by fefe
Branches: MAIN
CVS tags: finnland_test_200301, branch_rc14_fieldtest_finnland, branch_rc13_fieldtest_finnland, branch_rc12_fieldtest_finnland, branch_rc10_fieldtest_finnland, RELEASE_finnland_200301_1, RC12_FIELDTEST_FINNLAND, RC10_FIELDTEST_FINNLAND, HEAD
import a few more Uwe Ohse bug reports

/* man, what a crook! */

#include <pwd.h>
#include <stdio.h>
#include <sys/types.h>
#include <errno.h>
#include "dietwarning.h"

int putpwent(const struct passwd *p, FILE *stream) {
  if (p && stream) {
    fprintf(stream,"%s:%s:%d:%d:%s:%s:%s\n", p->pw_name, p->pw_passwd,
	    p->pw_uid, p->pw_gid, p->pw_gecos, p->pw_dir, p->pw_shell);
    return 0;
  }
  (*__errno_location())=EINVAL;
  return -1;
}

link_warning("putpwent","putpwent is garbage, don't use!")

LinuxTV legacy CVS <linuxtv.org/cvs>