From d023a584077af68be1903b71cd0625863dcdf95c Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Tue, 27 Apr 2010 16:04:34 +0000 Subject: [PATCH] * Fix problem reported by stippi: The IPP transport addon expected the URL in a custom printer attribute instead of the standard transport_address attribute. This caused the IPP transport to ask for the URL even though the Printers preference panel had already stored the URL in the transport_address attribute. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36505 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/print/transports/ipp/IppDefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/print/transports/ipp/IppDefs.h b/src/add-ons/print/transports/ipp/IppDefs.h index e4f020475a..793db489ce 100644 --- a/src/add-ons/print/transports/ipp/IppDefs.h +++ b/src/add-ons/print/transports/ipp/IppDefs.h @@ -5,7 +5,7 @@ #define __IppDefs_H #define SPOOL_PATH "printer_file" -#define IPP_URL "_ipp/URL" +#define IPP_URL "transport_address" #define IPP_JOB_ID "_ipp/job_id" #endif //__IppDefs_H