mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
NULL looks better than (char *)0 unless we're passing
an unprototyped argument to a function.
This commit is contained in:
parent
b943b3c4ae
commit
385f9bf07c
1 changed files with 1 additions and 1 deletions
|
|
@ -2526,7 +2526,7 @@ renamefrom(char *name)
|
|||
}
|
||||
if (lstat(name, &st) < 0) {
|
||||
perror_reply(550, name);
|
||||
return ((char *)0);
|
||||
return (NULL);
|
||||
}
|
||||
reply(350, "File exists, ready for destination name");
|
||||
return (name);
|
||||
|
|
|
|||
Loading…
Reference in a new issue