diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-28 02:59:10 -0800 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-28 02:59:10 -0800 |
commit | d8f1ccf07542579f6e2398c979f094abf1870e1a (patch) | |
tree | 6bfdf690696fbc1498eeaaf3272c23a08b2a98d8 /pinyweb | |
parent | 3764c43e4c01c7c2b33d591c743e16a8a38aee76 (diff) | |
download | piny-code-d8f1ccf07542579f6e2398c979f094abf1870e1a.tar.gz piny-code-d8f1ccf07542579f6e2398c979f094abf1870e1a.zip |
another error message
Diffstat (limited to 'pinyweb')
-rw-r--r-- | pinyweb/debian/changelog | 6 | ||||
-rw-r--r-- | pinyweb/suid/piny-suid.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/pinyweb/debian/changelog b/pinyweb/debian/changelog index 8d7281a..72fb23b 100644 --- a/pinyweb/debian/changelog +++ b/pinyweb/debian/changelog @@ -1,3 +1,9 @@ +pinyweb (0.6) unstable; urgency=low + + * and more errors + + -- Julian Blake Kongslie <jblake@omgwallhack.org> Tue, 28 Dec 2010 02:59:02 -0800 + pinyweb (0.5) unstable; urgency=low * Another error message improvement. diff --git a/pinyweb/suid/piny-suid.c b/pinyweb/suid/piny-suid.c index b92ee5f..cbbb7f1 100644 --- a/pinyweb/suid/piny-suid.c +++ b/pinyweb/suid/piny-suid.c @@ -115,7 +115,7 @@ int main( int argc, char *argv[] ) { execve( buf, argv + 2, env ); err = errno; - syslog( LOG_ERR, "Invalid command '%s' (fell past exec, %s)", argv[2], strerror( err ) ); + syslog( LOG_ERR, "Invalid command '%s' (fell past exec, %s)", buf, strerror( err ) ); fprintf( stderr, "'%s' does not appear to be a valid command!\n", argv[2] ); return 1; |