[syslinux:master] rosh: remove cmdstr from rosh_pwd()

syslinux-bot for Gene Cumm gene.cumm at gmail.com
Sun Nov 14 12:54:55 PST 2010


Commit-ID:  0315b01add0b49c922e550cc34d2781f1027c06d
Gitweb:     http://syslinux.zytor.com/commit/0315b01add0b49c922e550cc34d2781f1027c06d
Author:     Gene Cumm <gene.cumm at gmail.com>
AuthorDate: Sun, 3 Oct 2010 07:22:59 -0400
Committer:  Gene Cumm <gene.cumm at gmail.com>
CommitDate: Sat, 9 Oct 2010 07:33:08 -0400

rosh: remove cmdstr from rosh_pwd()



---
 com32/rosh/rosh.c |   11 ++---------
 1 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/com32/rosh/rosh.c b/com32/rosh/rosh.c
index a02b1f6..1263676 100644
--- a/com32/rosh/rosh.c
+++ b/com32/rosh/rosh.c
@@ -1082,15 +1082,10 @@ void rosh_less(const char *cmdstr)
 }				/* rosh_less */
 
 /* Show PWD
- *	cmdstr	command string to process
  */
-void rosh_pwd(const char *cmdstr)
+void rosh_pwd(void)
 {
-    int istr;
     char pwdstr[ROSH_PATH_SZ];
-    if (cmdstr)
-	istr = 0;
-    ROSH_DEBUG("CMD: '%s'\n", cmdstr);
     errno = 0;
     if (getcwd(pwdstr, ROSH_PATH_SZ)) {
 	printf("%s\n", pwdstr);
@@ -1098,8 +1093,6 @@ void rosh_pwd(const char *cmdstr)
 	rosh_error(errno, "pwd", "");
 	errno = 0;
     }
-    istr = htonl(*(int *)pwdstr);
-    ROSH_DEBUG2("  --%08X\n", istr);
 }				/* rosh_pwd */
 
 /* Reboot; use warm reboot if one of certain options set
@@ -1283,7 +1276,7 @@ char rosh_command(int argc, char *argv[], const char *ipwdstr)
     case 'p':
     case 'P':			/* run 'pwd' */
 	if (strncasecmp("pwd", argv[0], tlen) == 0)
-	    rosh_pwd(cmdstr);
+	    rosh_pwd();
 	else
 	    rosh_help(1, NULL);
 	break;



More information about the Syslinux-commits mailing list