aboutsummaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-08 08:39:55 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-08 08:39:55 +0000
commit3ed93cefbb0fe1943d1d5c53b238aaa7eb4d03dd (patch)
tree80dbc33f6e1c3f990e8ef08ba1a1ce89fcb9f017 /exec.c
parent21f603cb1ed2fd2ca5e009b50a1f6debc311c1ab (diff)
downloadlcd4linux-3ed93cefbb0fe1943d1d5c53b238aaa7eb4d03dd.tar.gz
[lcd4linux @ 2001-03-08 08:39:54 by reinelt]
fixed two typos git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@101 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/exec.c b/exec.c
index 0b7edd4..2617206 100644
--- a/exec.c
+++ b/exec.c
@@ -1,4 +1,4 @@
-/* $Id: exec.c,v 1.1 2001/03/07 18:10:21 ltoetsch Exp $
+/* $Id: exec.c,v 1.2 2001/03/08 08:39:54 reinelt Exp $
*
* exec ('x*') functions
*
@@ -20,6 +20,10 @@
*
*
* $Log: exec.c,v $
+ * Revision 1.2 2001/03/08 08:39:54 reinelt
+ *
+ * fixed two typos
+ *
* Revision 1.1 2001/03/07 18:10:21 ltoetsch
* added e(x)ec commands
*
@@ -55,7 +59,7 @@ int Exec(int index, char buff[EXEC_TXT_LEN])
pipe = popen(command, "r");
if (pipe == NULL) {
- error("Couln't run pip '%s'", command);
+ error("Couln't run pipe '%s'", command);
return -1;
}
fread(buff, EXEC_TXT_LEN, 1, pipe);