mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 23:08:40 +02:00
Rename function.
This commit is contained in:
@@ -40,7 +40,7 @@
|
|||||||
#include "expr.h"
|
#include "expr.h"
|
||||||
#include "err.h"
|
#include "err.h"
|
||||||
|
|
||||||
static void ProcessLongArg(char const *arg);
|
static void ProcessLongOption(char const *arg);
|
||||||
/***************************************************************
|
/***************************************************************
|
||||||
*
|
*
|
||||||
* Command line options recognized:
|
* Command line options recognized:
|
||||||
@@ -245,7 +245,7 @@ void InitRemind(int argc, char const *argv[])
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case '-':
|
case '-':
|
||||||
ProcessLongArg(arg);
|
ProcessLongOption(arg);
|
||||||
while(*arg) arg++;
|
while(*arg) arg++;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -965,7 +965,7 @@ AddTrustedUser(char const *username)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
ProcessLongArg(char const *arg)
|
ProcessLongOption(char const *arg)
|
||||||
{
|
{
|
||||||
if (!strcmp(arg, "version")) {
|
if (!strcmp(arg, "version")) {
|
||||||
printf("%s\n", VERSION);
|
printf("%s\n", VERSION);
|
||||||
|
|||||||
Reference in New Issue
Block a user