diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-02-22 12:53:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:10:52 -0500 |
commit | 9eed5a0cce97e32259ba2e6cf0d1831596ba3703 (patch) | |
tree | 024fe0cd003668ba1541560c92046d1ba99931da /source4 | |
parent | d900aed90c6383e9db6a0a51071c3c8622a53ba6 (diff) | |
download | samba-9eed5a0cce97e32259ba2e6cf0d1831596ba3703.tar.gz samba-9eed5a0cce97e32259ba2e6cf0d1831596ba3703.tar.bz2 samba-9eed5a0cce97e32259ba2e6cf0d1831596ba3703.zip |
r5504: fix typo
metze
(This used to be commit 2bb29cc68ae795bbb4baa12501103ae9555f1898)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/ndr/ndr_spoolss_buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_spoolss_buf.c b/source4/librpc/ndr/ndr_spoolss_buf.c index 0dcae6fad7..e13e912b68 100644 --- a/source4/librpc/ndr/ndr_spoolss_buf.c +++ b/source4/librpc/ndr/ndr_spoolss_buf.c @@ -41,7 +41,7 @@ ndr2->offset = 0;\ NDR_CHECK(ndr_push_##type(ndr2, NDR_SCALARS|NDR_BUFFERS, r->in.level, &(*r->out.info)[i]));\ }\ - if (*r->in.buf_size >= ndr->offset) {\ + if (*r->in.buf_size >= ndr2->offset) {\ buffer = data_blob_const(ndr2->data, ndr2->offset);\ } else {\ r->out.info = NULL;\ |