1
1
//
2
2
// This file is part of Dire Wolf, an amateur radio packet TNC.
3
3
//
4
- // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021 John Langner, WB2OSZ
4
+ // Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2019, 2020, 2021, 2023 John Langner, WB2OSZ
5
5
//
6
6
// This program is free software: you can redistribute it and/or modify
7
7
// it under the terms of the GNU General Public License as published by
@@ -283,6 +283,8 @@ int main (int argc, char *argv[])
283
283
/* 1 = normal, 0 = no text colors. */
284
284
/* 2, 3, ... alternate escape sequences for different terminals. */
285
285
286
+ // FIXME: consider case of no space between t and number.
287
+
286
288
for (j = 1 ; j < argc - 1 ; j ++ ) {
287
289
if (strcmp (argv [j ], "-t" ) == 0 ) {
288
290
t_opt = atoi (argv [j + 1 ]);
@@ -299,7 +301,7 @@ int main (int argc, char *argv[])
299
301
text_color_init (t_opt );
300
302
text_color_set (DW_COLOR_INFO );
301
303
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
302
- dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n" , MAJOR_VERSION , MINOR_VERSION , "E " , __DATE__ );
304
+ dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n" , MAJOR_VERSION , MINOR_VERSION , "F " , __DATE__ );
303
305
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
304
306
305
307
@@ -374,16 +376,19 @@ int main (int argc, char *argv[])
374
376
375
377
// I've seen many references to people running this as root.
376
378
// There is no reason to do that.
377
- // There is for some privileges to access the audio system, GPIO (if needed for PTT),
378
- // etc. but ordinary users have those abilities.
379
+ // Ordinary users can access audio, gpio, etc. if they are in the correct groups.
379
380
// Giving an applications permission to do things it does not need to do
380
381
// is a huge security risk.
381
382
382
383
#ifndef __WIN32__
383
384
if (getuid () == 0 || geteuid () == 0 ) {
384
385
text_color_set (DW_COLOR_ERROR );
385
- dw_printf ("Dire Wolf requires only privileges available to ordinary users.\n" );
386
- dw_printf ("Running this as root is an unnecessary security risk.\n" );
386
+ for (n = 0 ; n < 15 ; n ++ ) {
387
+ dw_printf ("\n" );
388
+ dw_printf ("Dire Wolf requires only privileges available to ordinary users.\n" );
389
+ dw_printf ("Running this as root is an unnecessary security risk.\n" );
390
+ SLEEP_SEC (1 );
391
+ }
387
392
}
388
393
#endif
389
394
0 commit comments