Displaying 2 results from an estimated 2 matches for "setcmd".
Did you mean:
netcmd
2007 Mar 20
1
Re: [nut-commits] svn commit r879 - in trunk: . drivers
...==================================================================
> --- trunk/drivers/gamatronic.c (original)
> +++ trunk/drivers/gamatronic.c Tue Mar 20 03:14:09 2007
> @@ -125,7 +125,7 @@
> void sec_setinfo(int varnum, char *value)
> {
>
> - if (sec_varlist[varnum].setcmd != ""){
> + if (*sec_varlist[varnum].setcmd){/*Not empty*/
>
> if (sec_varlist[varnum].flags == FLAG_STRING) {
> dstate_setinfo(sec_varlist[varnum].setcmd,"%s", value);
>
> __________________________________________...
2020 Mar 28
0
[klibc:update-dash] dash: builtin: Mark more regular built-ins
...b/usr/dash/builtins.def.in
@@ -69,25 +69,25 @@ exitcmd -s exit
exportcmd -as export -as readonly
falsecmd -u false
getoptscmd -u getopts
-hashcmd hash
+hashcmd -u hash
jobscmd -u jobs
localcmd -as local
printfcmd printf
-pwdcmd pwd
+pwdcmd -u pwd
readcmd -u read
returncmd -s return
setcmd -s set
shiftcmd -s shift
trapcmd -s trap
truecmd -s : -u true
-typecmd type
+typecmd -u type
umaskcmd -u umask
unaliascmd -u unalias
unsetcmd -s unset
waitcmd -u wait
aliascmd -au alias
#ifdef HAVE_GETRLIMIT
-ulimitcmd ulimit
+ulimitcmd -u ulimit
#endif
testcmd test [
killcmd -u...