View | Details | Raw Unified
Collapse All | Expand All

(-) libnss-pgsql-1.0.0.orig/conf/dbschema.sql (-1 / +1 lines)
 Lines 7-13    Link Here 
);
);
CREATE TABLE "accounts" (
CREATE TABLE "accounts" (
	"uid" serial NOT NULL,
	"uid" serial UNIQUE NOT NULL,
	"login" character varying(8) NOT NULL,
	"login" character varying(8) NOT NULL,
	"passwd" character varying(30) NOT NULL,
	"passwd" character varying(30) NOT NULL,
	"shell" character varying DEFAULT '/bin/bash' NOT NULL,
	"shell" character varying DEFAULT '/bin/bash' NOT NULL,
(-) libnss-pgsql-1.0.0.orig/src/backend.c (-1 / +1 lines)
 Lines 9-15    Link Here 
 */
 */
#include "nss-pgsql.h"
#include "nss-pgsql.h"
#include <postgresql/libpq-fe.h>
#include <libpq-fe.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <stdio.h>
#include <stdio.h>
(-) libnss-pgsql-1.0.0.orig/src/interface.c (+1 lines)
 Lines 12-17    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#define _LIBC
#define _LIBC
#define NOT_IN_libc
#include <bits/libc-lock.h>
#include <bits/libc-lock.h>
static __libc_lock_t  lock;
static __libc_lock_t  lock;