2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2024-11-22 02:59:49 +00:00

Fixes for lintian (.deb package cecker)

git-svn-id: https://svn.fhem.de/fhem/trunk@660 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2010-08-01 13:33:13 +00:00
parent 2588f1890b
commit 06169df608
3 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/perl
die("Usage: crc <HEX-MESSAGE> <CRC>\n") if(int(@ARGV) != 2);
my $msg = $ARGV[0];
$msg =~ s/ //g;

Binary file not shown.

View File

@ -1,10 +1,10 @@
#!perl
#!/usr/bin/perl
#
# read_ws2000 from device (elv art-Nr. 390-61) and provides socket service (like XPORT),
# or act as client for this service
# licence GPL2
# Thomas Dressler 2008
# $Id: ws2000_reader.pl,v 1.1 2008-05-10 21:10:38 tdressler Exp $
# $Id: ws2000_reader.pl,v 1.2 2010-08-01 13:33:13 rudolfkoenig Exp $
use Switch;
use strict;