|
From: Mattias A. <mat...@us...> - 2001-03-22 11:12:12
|
The following file was modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
btinit.c 1.3 1.4=20=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
fixed typo, SIGTERM calls exit which activates atexit function
The diff of the modified file(s):
--- btinit.c 2001/03/21 20:50:17 1.3
+++ btinit.c 2001/03/22 11:12:10 1.4
@@ -265,7 +265,7 @@
=20=20
longjmp(jmpbuffer, 1);
}
- if (sig =3D=3D SIGUSR1)
+ if (sig =3D=3D SIGTERM)
{
exit(0);
}
|