Skip to content

Commit 7573f99

Browse files
committed
Improve error message.
1 parent dbb4777 commit 7573f99

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/direwolf.c

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
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
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -283,6 +283,8 @@ int main (int argc, char *argv[])
283283
/* 1 = normal, 0 = no text colors. */
284284
/* 2, 3, ... alternate escape sequences for different terminals. */
285285

286+
// FIXME: consider case of no space between t and number.
287+
286288
for (j=1; j<argc-1; j++) {
287289
if (strcmp(argv[j], "-t") == 0) {
288290
t_opt = atoi (argv[j+1]);
@@ -299,7 +301,7 @@ int main (int argc, char *argv[])
299301
text_color_init(t_opt);
300302
text_color_set(DW_COLOR_INFO);
301303
//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__);
303305
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
304306

305307

@@ -374,16 +376,19 @@ int main (int argc, char *argv[])
374376

375377
// I've seen many references to people running this as root.
376378
// 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.
379380
// Giving an applications permission to do things it does not need to do
380381
// is a huge security risk.
381382

382383
#ifndef __WIN32__
383384
if (getuid() == 0 || geteuid() == 0) {
384385
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+
}
387392
}
388393
#endif
389394

0 commit comments

Comments
 (0)