Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 34627
Collapse All | Expand All

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

Return to bug 34627