18 lines
452 B
Diff
18 lines
452 B
Diff
diff -up cups-1.4.2/systemv/lpstat.c.str3541 cups-1.4.2/systemv/lpstat.c
|
|
--- cups-1.4.2/systemv/lpstat.c.str3541 2009-02-04 23:54:22.000000000 +0100
|
|
+++ cups-1.4.2/systemv/lpstat.c 2010-03-30 17:38:09.000000000 +0200
|
|
@@ -581,11 +581,11 @@ match_list(const char *list, /* I - Lis
|
|
|
|
|
|
/*
|
|
- * An empty list always matches...
|
|
+ * An empty list never matches...
|
|
*/
|
|
|
|
if (!list || !*list)
|
|
- return (1);
|
|
+ return (0);
|
|
|
|
while (*list)
|
|
{
|