diff options
author | Guy Harris <guy@alum.mit.edu> | 2018-12-31 16:55:23 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-01-01 02:07:06 +0000 |
commit | ba589a4e445a8ad8054073eff846087fc61c9ef8 (patch) | |
tree | ac5bcee756541531a1864ce01c60f3f0395e0dc5 /reordercap.c | |
parent | 5a5d236d1f1c0149e9e9fa291cbd251006a8dd40 (diff) | |
download | wireshark-ba589a4e445a8ad8054073eff846087fc61c9ef8.tar.gz wireshark-ba589a4e445a8ad8054073eff846087fc61c9ef8.tar.bz2 wireshark-ba589a4e445a8ad8054073eff846087fc61c9ef8.zip |
Move some command-line-oriented routines from wsutil to ui.
cmdarg_err() is for reporting errors for command-line programs and
command-line errors in GUI programs; it's not something for any of the
Wireshark libraries to use.
The various routines for parsing numerical command-line arguments are
not for general use, they're just for use when parsing arguments.
Change-Id: I100bd4a55ab8ee4497f41d9651b0c5670e6c1e7f
Reviewed-on: https://code.wireshark.org/review/31281
Petri-Dish: Guy Harris <guy@alum.mit.edu>
Tested-by: Petri Dish Buildbot
Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'reordercap.c')
-rw-r--r-- | reordercap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reordercap.c b/reordercap.c index c727db6e78..4507537f16 100644 --- a/reordercap.c +++ b/reordercap.c @@ -25,7 +25,7 @@ #include "wsutil/wsgetopt.h" #endif -#include <wsutil/cmdarg_err.h> +#include <ui/cmdarg_err.h> #include <wsutil/filesystem.h> #include <wsutil/file_util.h> #include <wsutil/privileges.h> |