diff options
author | Andrzej Bialecki <abial@FreeBSD.org> | 1999-05-09 22:16:27 +0000 |
---|---|---|
committer | Andrzej Bialecki <abial@FreeBSD.org> | 1999-05-09 22:16:27 +0000 |
commit | 1a9e10d8a11c13aca78f32edbcfd740819762bee (patch) | |
tree | 5527db922c8e2f020ee26c66bfeaf38bd5e4b44d /sbin/kget | |
parent | e2eb6a14cd6458804c2175688edc095f911c4a72 (diff) |
Silence message about absence of PnP overrides.
Notes
Notes:
svn path=/head/; revision=46839
Diffstat (limited to 'sbin/kget')
-rw-r--r-- | sbin/kget/kget.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sbin/kget/kget.c b/sbin/kget/kget.c index b7c779f17e21..5b9f4c798123 100644 --- a/sbin/kget/kget.c +++ b/sbin/kget/kget.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kget.c,v 1.3 1999/02/12 20:36:09 abial Exp $ + * $Id: kget.c,v 1.1 1999/02/27 02:24:18 jkh Exp $ */ #include <stdio.h> @@ -115,8 +115,8 @@ main(int argc, char *argv[]) /* get the buffer size */ i=sysctlbyname(mib2,NULL,&len,NULL,NULL); if(i) { - perror("buffer sizing"); - exit(-1); + /* Hmm.. No PnP table? */ + goto finish; } buf=(char *)malloc(len*sizeof(char)); i=sysctlbyname(mib2,buf,&len,NULL,NULL); @@ -157,8 +157,9 @@ main(int argc, char *argv[]) } } while ((i+=sizeof(struct pnp_cinfo))<len); + free(buf); +finish: fprintf(fout,"q\n"); fclose(fout); - free(buf); exit(0); } |