diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-02-06 17:33:03 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-02-06 17:33:03 +0000 |
commit | 087c162f8fb76b338a9b2e037669292f4f81c166 (patch) | |
tree | 2e994ea544ef0cc6626cb07f556d465e8e8cb881 | |
parent | a513915cb6549672dc48d0e82f3184144e4f24b8 (diff) | |
download | samba-087c162f8fb76b338a9b2e037669292f4f81c166.tar.gz samba-087c162f8fb76b338a9b2e037669292f4f81c166.tar.bz2 samba-087c162f8fb76b338a9b2e037669292f4f81c166.zip |
Fixed incorrect offset into array.
jra@cygnus.com
(This used to be commit 7c386c45b069462760b4a9c755959b67d5874cc1)
-rw-r--r-- | source3/printing/printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c index f026d77156..d2071ace59 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -421,7 +421,7 @@ DEBUG(3,("Time reported for job %d is %s", buf->job, ctime(&buf->time))); #ifdef LPRNG_PRIOTOK /* Here I try to map the CLASS char to a number, but the number is never shown in Print Manager under NT anyway... Magnus. */ - buf->priority = atoi(tok[LPRNG_PRIOTOK-('A'-1)]); + buf->priority = atoi(tok[LPRNG_PRIOTOK]-('A'-1)); #else buf->priority = 1; #endif |