Refresh 01_sessreg_implement_hostname_hashing.diff.
This commit is contained in:
parent
9511c67950
commit
8d18dcf7a2
|
@ -9,6 +9,7 @@ x11-xserver-utils (7.3+6) UNRELEASED; urgency=low
|
||||||
COPYING.
|
COPYING.
|
||||||
* xrandr 1.2.99.4.
|
* xrandr 1.2.99.4.
|
||||||
* Drop all xrandr patches (included upstream).
|
* Drop all xrandr patches (included upstream).
|
||||||
|
* Refresh 01_sessreg_implement_hostname_hashing.diff.
|
||||||
|
|
||||||
-- Julien Cristau <jcristau@debian.org> Sun, 03 Aug 2008 01:26:58 +0200
|
-- Julien Cristau <jcristau@debian.org> Sun, 03 Aug 2008 01:26:58 +0200
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,9 @@ Not submitted to XFree86.
|
||||||
|
|
||||||
Index: sessreg/sessreg.c
|
Index: sessreg/sessreg.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- sessreg/sessreg.c.orig 2005-10-18 19:45:25.000000000 -0400
|
--- sessreg/sessreg.c.orig
|
||||||
+++ sessreg/sessreg.c 2005-10-18 21:36:02.000000000 -0400
|
+++ sessreg/sessreg.c
|
||||||
@@ -182,6 +182,18 @@
|
@@ -96,6 +96,18 @@
|
||||||
const char *host, Time_t date, int addp);
|
const char *host, Time_t date, int addp);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ Index: sessreg/sessreg.c
|
||||||
int wflag, uflag, lflag;
|
int wflag, uflag, lflag;
|
||||||
char *wtmp_file, *utmp_file, *line;
|
char *wtmp_file, *utmp_file, *line;
|
||||||
#ifdef USE_UTMPX
|
#ifdef USE_UTMPX
|
||||||
@@ -469,21 +481,23 @@
|
@@ -384,21 +396,23 @@
|
||||||
bzero (u->ut_name, sizeof (u->ut_name));
|
bzero (u->ut_name, sizeof (u->ut_name));
|
||||||
#ifdef SYSV
|
#ifdef SYSV
|
||||||
if (line) {
|
if (line) {
|
||||||
|
@ -72,7 +72,7 @@ Index: sessreg/sessreg.c
|
||||||
bzero (u->ut_id, sizeof (u->ut_id));
|
bzero (u->ut_id, sizeof (u->ut_id));
|
||||||
if (addp) {
|
if (addp) {
|
||||||
u->ut_pid = getppid ();
|
u->ut_pid = getppid ();
|
||||||
@@ -722,3 +736,129 @@
|
@@ -637,3 +651,129 @@
|
||||||
return freeslot;
|
return freeslot;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue