It would appear that the SIEFREPOSITORY path is not writable, does not exist or is otherwise unusable, in which case tempnam falls back to other paths, as explained in the documenation:
Creates a file with a unique filename, with access permission set to 0600, in the specified directory. If the directory does not exist, tempnam() may generate a file in the system's temporary directory, and return the name of that.
and
If PHP cannot create a file in the specified dir parameter, it falls back on the system default. On NTFS this also happens if the specified dir contains more than 65534 files.
Check if something's wrong with that path and have a look through the comments in the above linked site, there are some tidbits about gaining more control over tempnam.