build failure in su in current cvs
Mike Frysinger <[email protected]> Mon, 9 Jan 2006 18:55:28 -0500
| Newsgroups | gmane.linux.pld.shadow.general |
|---|---|
| Organization | wh0rd.org |
| Message-ID | <[email protected]> |
in case no one has noticed, the latest merge of 437_su_-c_option Debian patch causes two errors ... the shellstr variable is declared twice: - char *shellstr = 0; + char *shellstr = 0, *shellstr = 0; and the command string variable isnt declared anywhere ... fix is probably to change the second shellstr to command: - char *shellstr = 0, *shellstr = 0; + char *shellstr = 0, *command = 0; -mike