[Pcsclite-cvs-commit] PCSC/etc pcscd.startup,1.3,1.4 StartupParameters.plist,1.3,1.4 SmartcardServices,1.5,1.6

rousseau@haydn.debian.org rousseau@haydn.debian.org


Update of /cvsroot/pcsclite/PCSC/etc
In directory haydn:/tmp/cvs-serv32005/etc

Modified Files:
	pcscd.startup StartupParameters.plist SmartcardServices 
Log Message:
Typos. thanks to Ville Skyttä for the patches


Index: pcscd.startup
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/etc/pcscd.startup,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- pcscd.startup	8 Dec 2003 17:14:58 -0000	1.3
+++ pcscd.startup	13 May 2004 13:25:06 -0000	1.4
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# pcscd        Starts the pcscd Daemon
+# pcscd        Starts the pcscd daemon
 #
 #
 # chkconfig: 2345 12 88

Index: StartupParameters.plist
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/etc/StartupParameters.plist,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- StartupParameters.plist	10 May 2004 13:14:30 -0000	1.3
+++ StartupParameters.plist	13 May 2004 13:25:06 -0000	1.4
@@ -5,7 +5,7 @@
   OrderPreference = "None";
   Messages =
   {
-    start = "Starting Smart card Services";
-    stop  = "Stopping Smart card Services";
+    start = "Starting Smart Card Services";
+    stop  = "Stopping Smart Card Services";
   };
 }

Index: SmartcardServices
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/etc/SmartcardServices,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- SmartcardServices	10 May 2004 13:14:30 -0000	1.5
+++ SmartcardServices	13 May 2004 13:25:06 -0000	1.6
@@ -9,7 +9,7 @@
 StartService ()
 {
     if ! pid=$(GetPID pcscd); then
-	ConsoleMessage "Starting Smart card Services"
+	ConsoleMessage "Starting Smart Card Services"
 	rm -rf /tmp/pcsc
 	/usr/sbin/pcscd
     fi
@@ -19,7 +19,7 @@
 StopService ()
 {
     if pid=$(GetPID pcscd); then
-        ConsoleMessage "Stopping Smart card Services"
+        ConsoleMessage "Stopping Smart Card Services"
         kill -TERM "${pid}"
     fi
 }
@@ -27,7 +27,7 @@
 RestartService ()
 {
     if pid=$(GetPID pcscd); then
-        ConsoleMessage "Restarting Smart card Services"
+        ConsoleMessage "Restarting Smart Card Services"
         kill -TERM "${pid}"
     fi
     # Leave pcscd the time to die