thorsson_cups 0.0.27 → 0.0.28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/ext/cups.c +11 -5
  2. metadata +2 -2
data/ext/cups.c CHANGED
@@ -441,9 +441,11 @@ static VALUE cups_cancel_print(int argc, VALUE* argv, VALUE self)
441
441
  *
442
442
  * Return uri for requested printer.
443
443
  */
444
- static VALUE cups_get_device_uri(VALUE self, VALUE printerName) {
444
+ static VALUE cups_get_device_uri(VALUE self, VALUE printerName)
445
+ {
445
446
  // Don't have to lift a finger unless the printer exists.
446
- if (!printer_exists(printerName)){
447
+ if (!printer_exists(printerName))
448
+ {
447
449
  rb_raise(rb_eRuntimeError, "The printer or destination doesn't exist!");
448
450
  }
449
451
 
@@ -461,14 +463,18 @@ static VALUE cups_cancel_print(int argc, VALUE* argv, VALUE self)
461
463
  httpAssembleURIf(HTTP_URI_CODING_ALL, uri, sizeof(uri), "ipp", NULL, "localhost", 0, "/printers/%s", printer);
462
464
  ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri", NULL, uri);
463
465
 
464
- if ((response = cupsDoRequest(http, request, "/")) != NULL) {
465
- if((attr = ippFindAttribute(response, "device-uri", IPP_TAG_URI)) != NULL) {
466
+ if ((response = cupsDoRequest(http, request, "/")) != NULL)
467
+ {
468
+ if((attr = ippFindAttribute(response, "device-uri", IPP_TAG_URI)) != NULL)
469
+ {
466
470
  //int c = 0;
467
471
  // sprintf(location, "%s", attr->values[0].string.text);
468
472
  }
469
473
  ippDelete(response);
470
474
  }
471
- }
475
+
476
+ return Qtrue;
477
+ }
472
478
 
473
479
  /*
474
480
  * call-seq:
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 27
9
- version: 0.0.27
8
+ - 28
9
+ version: 0.0.28
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ivan Turkovic