mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
craklib:fix testnum and teststr failed
Error log: ... $ ./testnum (null).pwd.gz: No such file or directory PWOpen: No such file or directory $ ./util/teststr (null).pwd.gz: No such file or directory PWOpen: No such file or directory ... Set DEFAULT_CRACKLIB_DICT as the path of PWOpen (From OE-Core rev: 9c78d2ef5291b29fa313f9d4bf6a81c395207d69) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a28959eae7
commit
a50ffe6359
@@ -0,0 +1,53 @@
|
||||
From 06f9a88b5dd5597f9198ea0cb34f5e96f180e6e3 Mon Sep 17 00:00:00 2001
|
||||
From: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
Date: Sat, 27 Apr 2013 16:02:30 +0800
|
||||
Subject: [PATCH] craklib:fix testnum and teststr failed
|
||||
|
||||
Error log:
|
||||
...
|
||||
$ ./testnum
|
||||
(null).pwd.gz: No such file or directory
|
||||
PWOpen: No such file or directory
|
||||
|
||||
$ ./util/teststr
|
||||
(null).pwd.gz: No such file or directory
|
||||
PWOpen: No such file or directory
|
||||
...
|
||||
Set DEFAULT_CRACKLIB_DICT as the path of PWOpen
|
||||
|
||||
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
||||
Upstream-Status: Pending
|
||||
---
|
||||
util/testnum.c | 2 +-
|
||||
util/teststr.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/util/testnum.c b/util/testnum.c
|
||||
index ae2246d..ca210ff 100644
|
||||
--- a/util/testnum.c
|
||||
+++ b/util/testnum.c
|
||||
@@ -20,7 +20,7 @@ main ()
|
||||
PWDICT *pwp;
|
||||
char buffer[STRINGSIZE];
|
||||
|
||||
- if (!(pwp = PWOpen (NULL, "r")))
|
||||
+ if (!(pwp = PWOpen (DEFAULT_CRACKLIB_DICT, "r")))
|
||||
{
|
||||
perror ("PWOpen");
|
||||
return (-1);
|
||||
diff --git a/util/teststr.c b/util/teststr.c
|
||||
index 2a31fa4..9fb9cda 100644
|
||||
--- a/util/teststr.c
|
||||
+++ b/util/teststr.c
|
||||
@@ -15,7 +15,7 @@ main ()
|
||||
PWDICT *pwp;
|
||||
char buffer[STRINGSIZE];
|
||||
|
||||
- if (!(pwp = PWOpen (NULL, "r")))
|
||||
+ if (!(pwp = PWOpen (DEFAULT_CRACKLIB_DICT, "r")))
|
||||
{
|
||||
perror ("PWOpen");
|
||||
return (-1);
|
||||
--
|
||||
1.7.10.4
|
||||
|
||||
@@ -11,7 +11,8 @@ PR ="r0"
|
||||
EXTRA_OECONF = "--without-python"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/cracklib/cracklib-${PV}.tar.gz \
|
||||
file://0001-packlib.c-support-dictionary-byte-order-dependent.patch"
|
||||
file://0001-packlib.c-support-dictionary-byte-order-dependent.patch \
|
||||
file://0002-craklib-fix-testnum-and-teststr-failed.patch"
|
||||
|
||||
SRC_URI[md5sum] = "463177b5c29c7a598c991e12a4898e06"
|
||||
SRC_URI[sha256sum] = "feaff49bfb513ec10b2618c00d2f7f60776ba93fcc5fa22dd3479dd9cad9f770"
|
||||
|
||||
Reference in New Issue
Block a user