diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2005-01-24 04:20:45 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2005-01-24 04:20:45 +0000 |
commit | e1f4b3fea8d81c78f6de13ff6bf75cfc277f3fca (patch) | |
tree | c44cb5f20423fd9803760e52b180be3e60b101eb | |
parent | 05fbf7adc12ac31931e95dc469bcff04d782d8b1 (diff) |
//bugs.freedesktop.org/show_bug.cgi?id=2167) attachment #1641
(https://bugs.freedesktop.org/attachment.cgi?id=1641): Fix broken
Solaris print queue enumeration.
-rw-r--r-- | Xprint/spooler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xprint/spooler.c b/Xprint/spooler.c index 8dbb4625a..8367a8438 100644 --- a/Xprint/spooler.c +++ b/Xprint/spooler.c @@ -125,7 +125,7 @@ copyright holders. "| sort -u` " \ "| nawk -F: ' NF == 2 { name=$1 } " \ " NF == 1 { sub(\"^.*description\\( - undefined|=\\)\",\"\"); " \ - " printf \"%sxp-printerattr.descriptor=%s\\n\", name, $1 } '" + " printf \"%s\txp-printerattr.descriptor=%s\\n\", name, $1 } '" #define LIST_QUEUES_OTHER \ "LANG=C lpstat -v | " \ |